mirror of
https://github.com/sbrow/strings.git
synced 2025-12-29 23:17:39 -05:00
7 lines
407 B
TypeScript
7 lines
407 B
TypeScript
/**
|
|
* Trims characters from the left side of a string.
|
|
*/
|
|
export declare const ltrim: import("ts-toolbelt/out/Function/Curry").Curry<(cutset: string, str: string) => string>;
|
|
export declare const rtrim: import("ts-toolbelt/out/Function/Curry").Curry<(cutset: string, str: string) => string>;
|
|
export declare const trim: import("ts-toolbelt/out/Function/Curry").Curry<(cutset: string, str: string) => any>;
|