Expose _.toInteger.

This commit is contained in:
John-David Dalton
2015-09-04 08:35:36 -07:00
parent b534b83756
commit e516d99b2d
2 changed files with 29 additions and 13 deletions

View File

@@ -17387,7 +17387,8 @@
'random',
'reduce',
'reduceRight',
'some'
'some',
'toInteger'
];
_.each(funcs, function(methodName) {
@@ -17596,7 +17597,7 @@
var acceptFalsey = _.difference(allMethods, rejectFalsey);
test('should accept falsey arguments', 232, function() {
test('should accept falsey arguments', 233, function() {
var emptyArrays = _.map(falsey, _.constant([]));
_.each(acceptFalsey, function(methodName) {