mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
27 lines
1.3 KiB
JavaScript
27 lines
1.3 KiB
JavaScript
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/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, startsWith, template, templateSettings, trim, trimLeft, trimRight, trunc, unescape, words) {
|
|
return {
|
|
'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
|
|
};
|
|
});
|