forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfromPairs.js
47 lines (37 loc) · 1.44 KB
/
fromPairs.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
import assert from 'assert';
import lodashStable from 'lodash';
import { falsey, stubObject, LARGE_ARRAY_SIZE } from './utils.js';
import fromPairs from '../fromPairs.js';
import toPairs from '../toPairs.js';
describe('fromPairs', function() {
it('should accept a two dimensional array', function() {
var array = [['a', 1], ['b', 2]],
object = { 'a': 1, 'b': 2 },
actual = fromPairs(array);
assert.deepStrictEqual(actual, object);
});
it('should accept a falsey `array`', function() {
var expected = lodashStable.map(falsey, stubObject);
var actual = lodashStable.map(falsey, function(array, index) {
try {
return index ? fromPairs(array) : fromPairs();
} catch (e) {}
});
assert.deepStrictEqual(actual, expected);
});
it('should not support deep paths', function() {
var actual = fromPairs([['a.b', 1]]);
assert.deepStrictEqual(actual, { 'a.b': 1 });
});
it('should support consuming the return value of `_.toPairs`', function() {
var object = { 'a.b': 1 };
assert.deepStrictEqual(fromPairs(toPairs(object)), object);
});
it('should work in a lazy sequence', function() {
var array = lodashStable.times(LARGE_ARRAY_SIZE, function(index) {
return ['key' + index, index];
});
var actual = _(array).fromPairs().map(square).filter(isEven).take().value();
assert.deepEqual(actual, _.take(_.filter(_.map(fromPairs(array), square), isEven)));
});
});