mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Bump to v3.0.0.
This commit is contained in:
47
string.js
Normal file
47
string.js
Normal file
@@ -0,0 +1,47 @@
|
||||
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 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,
|
||||
'startsWith': startsWith,
|
||||
'template': template,
|
||||
'templateSettings': templateSettings,
|
||||
'trim': trim,
|
||||
'trimLeft': trimLeft,
|
||||
'trimRight': trimRight,
|
||||
'trunc': trunc,
|
||||
'unescape': unescape,
|
||||
'words': words
|
||||
};
|
||||
Reference in New Issue
Block a user