t-comm
Version:
专业、稳定、纯粹的工具库
29 lines (23 loc) • 1.12 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var string_limitLength = require('./limit-length.js');
var string_random = require('./random.js');
var string_replaceAll = require('./replace-all.js');
var string_string = require('./string.js');
var string_toUnicode = require('./to-unicode.js');
exports.checkStringLength = string_limitLength.checkStringLength;
exports.getRandomString = string_random.getRandomString;
exports.randomString = string_random.randomString;
exports.uniqueFactory = string_random.uniqueFactory;
exports.replaceAllPolyfill = string_replaceAll.replaceAllPolyfill;
exports.camelize = string_string.camelize;
exports.capitalize = string_string.capitalize;
exports.hyphenate = string_string.hyphenate;
exports.lowerInitial = string_string.lowerInitial;
exports.pascalCase = string_string.pascalCase;
exports.titleize = string_string.titleize;
exports.toCamel = string_string.toCamel;
exports.toKebab = string_string.toKebab;
exports.toPascal = string_string.toPascal;
exports.toUnicode = string_toUnicode.toUnicode;
exports.toUnicodeAt = string_toUnicode.toUnicodeAt;