Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ShellQuotingFunctions

Functions that provide shell quoting capabilities.

Hierarchy

  • ShellQuotingFunctions

Index

Properties

characters: { escape?: string; needQuotes?: string; strong?: string; weak?: string }

Type declaration

  • Optional escape?: string

    The character used to escape sequences.

  • Optional needQuotes?: string

    Characters that require quotes, white space is always implied.

  • Optional strong?: string

    The character used to quote sequences, preventing variable expansion.

  • Optional weak?: string

    The character used to quote sequences, allowing variable expansion.

Methods

  • escape(this: any, arg: string): string
  • strong(this: any, arg: string): string
  • weak(this: any, arg: string): string