forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevery.js
74 lines (58 loc) · 2.35 KB
/
every.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
import assert from 'assert';
import lodashStable from 'lodash';
import { identity, empties, stubTrue, stubFalse } from './utils.js';
import every from '../every.js';
describe('every', function() {
it('should return `true` if `predicate` returns truthy for all elements', function() {
assert.strictEqual(lodashStable.every([true, 1, 'a'], identity), true);
});
it('should return `true` for empty collections', function() {
var expected = lodashStable.map(empties, stubTrue);
var actual = lodashStable.map(empties, function(value) {
try {
return every(value, identity);
} catch (e) {}
});
assert.deepStrictEqual(actual, expected);
});
it('should return `false` as soon as `predicate` returns falsey', function() {
var count = 0;
assert.strictEqual(every([true, null, true], function(value) {
count++;
return value;
}), false);
assert.strictEqual(count, 2);
});
it('should work with collections of `undefined` values (test in IE < 9)', function() {
assert.strictEqual(every([undefined, undefined, undefined], identity), false);
});
it('should use `_.identity` when `predicate` is nullish', function() {
var values = [, null, undefined],
expected = lodashStable.map(values, stubFalse);
var actual = lodashStable.map(values, function(value, index) {
var array = [0];
return index ? every(array, value) : every(array);
});
assert.deepStrictEqual(actual, expected);
expected = lodashStable.map(values, stubTrue);
actual = lodashStable.map(values, function(value, index) {
var array = [1];
return index ? every(array, value) : every(array);
});
assert.deepStrictEqual(actual, expected);
});
it('should work with `_.property` shorthands', function() {
var objects = [{ 'a': 0, 'b': 1 }, { 'a': 1, 'b': 2 }];
assert.strictEqual(every(objects, 'a'), false);
assert.strictEqual(every(objects, 'b'), true);
});
it('should work with `_.matches` shorthands', function() {
var objects = [{ 'a': 0, 'b': 0 }, { 'a': 0, 'b': 1 }];
assert.strictEqual(every(objects, { 'a': 0 }), true);
assert.strictEqual(every(objects, { 'b': 1 }), false);
});
it('should work as an iteratee for methods like `_.map`', function() {
var actual = lodashStable.map([[1]], every);
assert.deepStrictEqual(actual, [true]);
});
});