mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
import camelCase from './string/camelCase';
|
|
import capitalize from './string/capitalize';
|
|
import deburr from './string/deburr';
|
|
import endsWith from './string/endsWith';
|
|
import escape from './string/escape';
|
|
import escapeRegExp from './string/escapeRegExp';
|
|
import kebabCase from './string/kebabCase';
|
|
import pad from './string/pad';
|
|
import padLeft from './string/padLeft';
|
|
import padRight from './string/padRight';
|
|
import parseInt from './string/parseInt';
|
|
import repeat from './string/repeat';
|
|
import snakeCase from './string/snakeCase';
|
|
import startCase from './string/startCase';
|
|
import startsWith from './string/startsWith';
|
|
import template from './string/template';
|
|
import templateSettings from './string/templateSettings';
|
|
import trim from './string/trim';
|
|
import trimLeft from './string/trimLeft';
|
|
import trimRight from './string/trimRight';
|
|
import trunc from './string/trunc';
|
|
import unescape from './string/unescape';
|
|
import words from './string/words';
|
|
|
|
export default {
|
|
'camelCase': camelCase,
|
|
'capitalize': capitalize,
|
|
'deburr': deburr,
|
|
'endsWith': endsWith,
|
|
'escape': escape,
|
|
'escapeRegExp': escapeRegExp,
|
|
'kebabCase': kebabCase,
|
|
'pad': pad,
|
|
'padLeft': padLeft,
|
|
'padRight': padRight,
|
|
'parseInt': parseInt,
|
|
'repeat': repeat,
|
|
'snakeCase': snakeCase,
|
|
'startCase': startCase,
|
|
'startsWith': startsWith,
|
|
'template': template,
|
|
'templateSettings': templateSettings,
|
|
'trim': trim,
|
|
'trimLeft': trimLeft,
|
|
'trimRight': trimRight,
|
|
'trunc': trunc,
|
|
'unescape': unescape,
|
|
'words': words
|
|
};
|