UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

8 lines 354 B
/** * Remove characters with code points in the range of 0-31 and 127 from the string. * * @param str - The string to process * @param keep_new_lines - If true, new line characters will be preserved * @returns The processed string with low ASCII characters removed */ export declare function stripLow(str: string, keep_new_lines?: boolean): string;