@technobuddha/library
Version:
A large library of useful functions
13 lines (12 loc) • 305 B
TypeScript
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;