mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 08:57:49 +00:00
Ensure _.times floors n float values.
This commit is contained in:
@@ -15544,6 +15544,11 @@
|
||||
});
|
||||
});
|
||||
|
||||
test('should floor `n` float values', 1, function() {
|
||||
var actual = _.times(2.4, _.indentify);
|
||||
deepEqual(actual, [0, 1]);
|
||||
});
|
||||
|
||||
test('should provide the correct `iteratee` arguments', 1, function() {
|
||||
var args;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user