@technobuddha > library > String > Construction
Type Alias: QuoteOptions
ts
type QuoteOptions = {
escape?: string | (input: string) => string;
quote?: string;
};Defined in: quote.ts:10
Options for the quote and unquote function
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
escape? | string | (input: string) => string | Character sequence to replace the quote mark within the text, or function to return the properly escaped text | src/quote.ts:14 |
quote? | string | The quote character(s) to use | src/quote.ts:12 |