1 | import camelCase from './camelCase.js';
|
---|
2 | import capitalize from './capitalize.js';
|
---|
3 | import deburr from './deburr.js';
|
---|
4 | import endsWith from './endsWith.js';
|
---|
5 | import escape from './escape.js';
|
---|
6 | import escapeRegExp from './escapeRegExp.js';
|
---|
7 | import kebabCase from './kebabCase.js';
|
---|
8 | import lowerCase from './lowerCase.js';
|
---|
9 | import lowerFirst from './lowerFirst.js';
|
---|
10 | import pad from './pad.js';
|
---|
11 | import padEnd from './padEnd.js';
|
---|
12 | import padStart from './padStart.js';
|
---|
13 | import parseInt from './parseInt.js';
|
---|
14 | import repeat from './repeat.js';
|
---|
15 | import replace from './replace.js';
|
---|
16 | import snakeCase from './snakeCase.js';
|
---|
17 | import split from './split.js';
|
---|
18 | import startCase from './startCase.js';
|
---|
19 | import startsWith from './startsWith.js';
|
---|
20 | import template from './template.js';
|
---|
21 | import templateSettings from './templateSettings.js';
|
---|
22 | import toLower from './toLower.js';
|
---|
23 | import toUpper from './toUpper.js';
|
---|
24 | import trim from './trim.js';
|
---|
25 | import trimEnd from './trimEnd.js';
|
---|
26 | import trimStart from './trimStart.js';
|
---|
27 | import truncate from './truncate.js';
|
---|
28 | import unescape from './unescape.js';
|
---|
29 | import upperCase from './upperCase.js';
|
---|
30 | import upperFirst from './upperFirst.js';
|
---|
31 | import words from './words.js';
|
---|
32 |
|
---|
33 | export default {
|
---|
34 | camelCase, capitalize, deburr, endsWith, escape,
|
---|
35 | escapeRegExp, kebabCase, lowerCase, lowerFirst, pad,
|
---|
36 | padEnd, padStart, parseInt, repeat, replace,
|
---|
37 | snakeCase, split, startCase, startsWith, template,
|
---|
38 | templateSettings, toLower, toUpper, trim, trimEnd,
|
---|
39 | trimStart, truncate, unescape, upperCase, upperFirst,
|
---|
40 | words
|
---|
41 | };
|
---|