mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 00:57:48 +00:00
Add fp.restFrom and fp.spreadFrom.
This commit is contained in:
@@ -1447,6 +1447,22 @@
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
QUnit.module('fp.restFrom');
|
||||
|
||||
(function() {
|
||||
QUnit.test('should accept a `start` param', function(assert) {
|
||||
assert.expect(1);
|
||||
|
||||
var actual = fp.restFrom(2)(function() {
|
||||
return slice.call(arguments);
|
||||
})('a', 'b', 'c', 'd');
|
||||
|
||||
assert.deepEqual(actual, ['a', 'b', ['c', 'd']]);
|
||||
});
|
||||
}());
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
QUnit.module('fp.runInContext');
|
||||
|
||||
(function() {
|
||||
@@ -1466,6 +1482,22 @@
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
QUnit.module('fp.spreadFrom');
|
||||
|
||||
(function() {
|
||||
QUnit.test('should accept a `start` param', function(assert) {
|
||||
assert.expect(1);
|
||||
|
||||
var actual = fp.spreadFrom(2)(function() {
|
||||
return slice.call(arguments);
|
||||
})('a', 'b', ['c', 'd']);
|
||||
|
||||
assert.deepEqual(actual, ['a', 'b', 'c', 'd']);
|
||||
});
|
||||
}());
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
QUnit.module('fp.trimChars');
|
||||
|
||||
_.each(['trimChars', 'trimCharsStart', 'trimCharsEnd'], function(methodName, index) {
|
||||
|
||||
Reference in New Issue
Block a user