mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 08:57:49 +00:00
Bump to v4.0.0.
This commit is contained in:
20
string.js
20
string.js
@@ -1,4 +1,4 @@
|
||||
define(['./string/camelCase', './string/capitalize', './string/deburr', './string/endsWith', './string/escape', './string/escapeRegExp', './string/kebabCase', './string/pad', './string/padLeft', './string/padRight', './string/parseInt', './string/repeat', './string/snakeCase', './string/startCase', './string/startsWith', './string/template', './string/templateSettings', './string/trim', './string/trimLeft', './string/trimRight', './string/trunc', './string/unescape', './string/words'], function(camelCase, capitalize, deburr, endsWith, escape, escapeRegExp, kebabCase, pad, padLeft, padRight, parseInt, repeat, snakeCase, startCase, startsWith, template, templateSettings, trim, trimLeft, trimRight, trunc, unescape, words) {
|
||||
define(['./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'], function(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) {
|
||||
return {
|
||||
'camelCase': camelCase,
|
||||
'capitalize': capitalize,
|
||||
@@ -7,21 +7,29 @@ define(['./string/camelCase', './string/capitalize', './string/deburr', './strin
|
||||
'escape': escape,
|
||||
'escapeRegExp': escapeRegExp,
|
||||
'kebabCase': kebabCase,
|
||||
'lowerCase': lowerCase,
|
||||
'lowerFirst': lowerFirst,
|
||||
'pad': pad,
|
||||
'padLeft': padLeft,
|
||||
'padRight': padRight,
|
||||
'padEnd': padEnd,
|
||||
'padStart': padStart,
|
||||
'parseInt': parseInt,
|
||||
'repeat': repeat,
|
||||
'replace': replace,
|
||||
'snakeCase': snakeCase,
|
||||
'split': split,
|
||||
'startCase': startCase,
|
||||
'startsWith': startsWith,
|
||||
'template': template,
|
||||
'templateSettings': templateSettings,
|
||||
'toLower': toLower,
|
||||
'toUpper': toUpper,
|
||||
'trim': trim,
|
||||
'trimLeft': trimLeft,
|
||||
'trimRight': trimRight,
|
||||
'trunc': trunc,
|
||||
'trimEnd': trimEnd,
|
||||
'trimStart': trimStart,
|
||||
'truncate': truncate,
|
||||
'unescape': unescape,
|
||||
'upperCase': upperCase,
|
||||
'upperFirst': upperFirst,
|
||||
'words': words
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user