Add support for _.camelCase, _.endsWith, _.escapeRegExp, _.kebabCase, _.pad, _.padLeft, _.padRight, _.repeat, _.snakeCase, _.startsWith, and _.truncate. [closes #425]

This commit is contained in:
John-David Dalton
2014-03-02 23:48:48 -08:00
parent ce65c3113a
commit 2a017c3a7c
2 changed files with 538 additions and 69 deletions

View File

@@ -9274,7 +9274,7 @@
var acceptFalsey = _.difference(allMethods, rejectFalsey);
test('should accept falsey arguments', 165, function() {
test('should accept falsey arguments', 176, function() {
var emptyArrays = _.map(falsey, function() { return []; }),
isExposed = '_' in root,
oldDash = root._;