Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:53:20 -08:00
parent 94d714007e
commit 8c26e6fd4c
656 changed files with 16423 additions and 11602 deletions

View File

@@ -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
};
});