forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurryRight.js
136 lines (109 loc) · 4.59 KB
/
curryRight.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import assert from 'assert';
import lodashStable from 'lodash';
import { slice, stubArray } from './utils.js';
import curryRight from '../curryRight.js';
import placeholder from '../placeholder.js';
import bind from '../bind.js';
import partialRight from '../partialRight.js';
import partial from '../partial.js';
describe('curryRight', function() {
function fn(a, b, c, d) {
return slice.call(arguments);
}
it('should curry based on the number of arguments given', function() {
var curried = curryRight(fn),
expected = [1, 2, 3, 4];
assert.deepStrictEqual(curried(4)(3)(2)(1), expected);
assert.deepStrictEqual(curried(3, 4)(1, 2), expected);
assert.deepStrictEqual(curried(1, 2, 3, 4), expected);
});
it('should allow specifying `arity`', function() {
var curried = curryRight(fn, 3),
expected = [1, 2, 3];
assert.deepStrictEqual(curried(3)(1, 2), expected);
assert.deepStrictEqual(curried(2, 3)(1), expected);
assert.deepStrictEqual(curried(1, 2, 3), expected);
});
it('should coerce `arity` to an integer', function() {
var values = ['0', 0.6, 'xyz'],
expected = lodashStable.map(values, stubArray);
var actual = lodashStable.map(values, function(arity) {
return curryRight(fn, arity)();
});
assert.deepStrictEqual(actual, expected);
assert.deepStrictEqual(curryRight(fn, '2')(1)(2), [2, 1]);
});
it('should support placeholders', function() {
var curried = curryRight(fn),
expected = [1, 2, 3, 4],
ph = curried.placeholder;
assert.deepStrictEqual(curried(4)(2, ph)(1, ph)(3), expected);
assert.deepStrictEqual(curried(3, ph)(4)(1, ph)(2), expected);
assert.deepStrictEqual(curried(ph, ph, 4)(ph, 3)(ph, 2)(1), expected);
assert.deepStrictEqual(curried(ph, ph, ph, 4)(ph, ph, 3)(ph, 2)(1), expected);
});
it('should persist placeholders', function() {
var curried = curryRight(fn),
ph = curried.placeholder,
actual = curried('a', ph, ph, ph)('b')(ph)('c')('d');
assert.deepStrictEqual(actual, ['a', 'b', 'c', 'd']);
});
it('should use `_.placeholder` when set', function() {
var curried = curryRight(fn),
_ph = placeholder = {},
ph = curried.placeholder;
assert.deepEqual(curried(4)(2, _ph)(1, ph), [1, 2, ph, 4]);
delete placeholder;
});
it('should provide additional arguments after reaching the target arity', function() {
var curried = curryRight(fn, 3);
assert.deepStrictEqual(curried(4)(1, 2, 3), [1, 2, 3, 4]);
assert.deepStrictEqual(curried(4, 5)(1, 2, 3), [1, 2, 3, 4, 5]);
assert.deepStrictEqual(curried(1, 2, 3, 4, 5, 6), [1, 2, 3, 4, 5, 6]);
});
it('should create a function with a `length` of `0`', function() {
lodashStable.times(2, function(index) {
var curried = index ? curryRight(fn, 4) : curryRight(fn);
assert.strictEqual(curried.length, 0);
assert.strictEqual(curried(4).length, 0);
assert.strictEqual(curried(3, 4).length, 0);
});
});
it('should ensure `new curried` is an instance of `func`', function() {
function Foo(value) {
return value && object;
}
var curried = curryRight(Foo),
object = {};
assert.ok(new curried(false) instanceof Foo);
assert.strictEqual(new curried(true), object);
});
it('should use `this` binding of function', function() {
var fn = function(a, b, c) {
var value = this || {};
return [value[a], value[b], value[c]];
};
var object = { 'a': 1, 'b': 2, 'c': 3 },
expected = [1, 2, 3];
assert.deepStrictEqual(curryRight(bind(fn, object), 3)('c')('b')('a'), expected);
assert.deepStrictEqual(curryRight(bind(fn, object), 3)('b', 'c')('a'), expected);
assert.deepStrictEqual(curryRight(bind(fn, object), 3)('a', 'b', 'c'), expected);
assert.deepStrictEqual(bind(curryRight(fn), object)('c')('b')('a'), Array(3));
assert.deepStrictEqual(bind(curryRight(fn), object)('b', 'c')('a'), Array(3));
assert.deepStrictEqual(bind(curryRight(fn), object)('a', 'b', 'c'), expected);
object.curried = curryRight(fn);
assert.deepStrictEqual(object.curried('c')('b')('a'), Array(3));
assert.deepStrictEqual(object.curried('b', 'c')('a'), Array(3));
assert.deepStrictEqual(object.curried('a', 'b', 'c'), expected);
});
it('should work with partialed methods', function() {
var curried = curryRight(fn),
expected = [1, 2, 3, 4];
var a = partialRight(curried, 4),
b = partialRight(a, 3),
c = bind(b, null, 1),
d = partial(b(2), 1);
assert.deepStrictEqual(c(2), expected);
assert.deepStrictEqual(d(), expected);
});
});