Options for stripFormatting

interface StripOptions {
    commas?: boolean;
    doubleQuotes?: boolean;
    semicolons?: boolean;
    singleQuotes?: boolean;
    spaces?: boolean;
}

Properties

commas?: boolean

Strip all commas (,).

doubleQuotes?: boolean

Strip all double quotes (").

true
semicolons?: boolean

Strip all semicolons (;).

singleQuotes?: boolean

Strip all single quotes (').

true
spaces?: boolean

Strip whitespace.

true