mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
Bump to v4.0.0.
This commit is contained in:
41
string.default.js
Normal file
41
string.default.js
Normal file
@@ -0,0 +1,41 @@
|
||||
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
|
||||
};
|
||||
Reference in New Issue
Block a user