UNPKG

305 BTypeScriptView Raw
1/**
2 * 去除字符串左边的空格
3 * @param str 字符串
4 */
5export declare function trimLeft(str: string): string;
6export declare function trimLeft(str: any): string;
7
8declare module './ctor' {
9 interface XEUtilsMethods {
10 trimLeft: typeof trimLeft;
11 }
12}
13
14export default trimLeft