mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import camelCase from './camelCase';
|
|
import capitalize from './capitalize';
|
|
import deburr from './deburr';
|
|
import endsWith from './endsWith';
|
|
import escape from './escape';
|
|
import escapeRegExp from './escapeRegExp';
|
|
import kebabCase from './kebabCase';
|
|
import lowerCase from './lowerCase';
|
|
import lowerFirst from './lowerFirst';
|
|
import pad from './pad';
|
|
import padEnd from './padEnd';
|
|
import padStart from './padStart';
|
|
import parseInt from './parseInt';
|
|
import repeat from './repeat';
|
|
import replace from './replace';
|
|
import snakeCase from './snakeCase';
|
|
import split from './split';
|
|
import startCase from './startCase';
|
|
import startsWith from './startsWith';
|
|
import template from './template';
|
|
import templateSettings from './templateSettings';
|
|
import toLower from './toLower';
|
|
import toUpper from './toUpper';
|
|
import trim from './trim';
|
|
import trimEnd from './trimEnd';
|
|
import trimStart from './trimStart';
|
|
import truncate from './truncate';
|
|
import unescape from './unescape';
|
|
import upperCase from './upperCase';
|
|
import upperFirst from './upperFirst';
|
|
import words from './words';
|
|
|
|
export default {
|
|
camelCase, capitalize, deburr, endsWith, escape,
|
|
escapeRegExp, kebabCase, lowerCase, lowerFirst, pad,
|
|
padEnd, padStart, parseInt, repeat, replace,
|
|
snakeCase, split, startCase, startsWith, template,
|
|
templateSettings, toLower, toUpper, trim, trimEnd,
|
|
trimStart, truncate, unescape, upperCase, upperFirst,
|
|
words
|
|
};
|