UNPKG

@technobuddha/library

Version:
13 lines (12 loc) 305 B
export declare type Options = { /** the indentation character */ indenter?: string; }; /** * Remove indentation from text * * @param input The indented text * @param pattern (space) */ export declare function unindent(input: string, { indenter }?: Options): string; export default unindent;