xe-utils-es
Version:
JavaScript 函数库、工具类
33 lines (32 loc) • 1.06 kB
TypeScript
import padEnd from './padEnd';
import padStart from './padStart';
import repeat from './repeat';
import trim from './trim';
import trimRight from './trimRight';
import trimLeft from './trimLeft';
import camelCase from './camelCase';
import kebabCase from './kebabCase';
import startsWith from './startsWith';
import endsWith from './endsWith';
import template from './template';
import toFormatString from './toFormatString';
import toValueString from './toValueString';
declare const stringExports: {
trim: typeof trim;
trimLeft: typeof trimLeft;
trimRight: typeof trimRight;
escape: (str: any) => string;
unescape: (str: any) => string;
camelCase: typeof camelCase;
kebabCase: typeof kebabCase;
repeat: typeof repeat;
padStart: typeof padStart;
padEnd: typeof padEnd;
startsWith: typeof startsWith;
endsWith: typeof endsWith;
template: typeof template;
toFormatString: typeof toFormatString;
toString: typeof toValueString;
toValueString: typeof toValueString;
};
export default stringExports;