Skip to content

@technobuddha > library > String > Operations

Type Alias: StripOptions

ts
type StripOptions = {
  ansiEscape?: boolean;
};

Defined in: strip.ts:9

Options for stripping unwanted characters or sequences from strings.

Properties

PropertyTypeDescriptionDefined in
ansiEscape?booleanIf true, ANSI escape codes will be removed from the string.src/strip.ts:13