-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
es.array.some.js
35 lines (33 loc) · 1.23 KB
/
es.array.some.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
import { STRICT } from '../helpers/constants.js';
import some from 'core-js-pure/es/array/some';
QUnit.test('Array#some', assert => {
assert.isFunction(some);
let array = [1];
const context = {};
some(array, function (value, key, that) {
assert.same(arguments.length, 3, 'correct number of callback arguments');
assert.same(value, 1, 'correct value in callback');
assert.same(key, 0, 'correct index in callback');
assert.same(that, array, 'correct link to array in callback');
assert.same(this, context, 'correct callback context');
}, context);
assert.true(some([1, '2', 3], it => typeof it == 'number'));
assert.true(some([1, 2, 3], it => it < 3));
assert.false(some([1, 2, 3], it => it < 0));
assert.false(some([1, 2, 3], it => typeof it == 'string'));
assert.false(some([1, 2, 3], function () {
return +this !== 1;
}, 1));
let result = '';
some([1, 2, 3], (value, key) => {
result += key;
return false;
});
assert.same(result, '012');
array = [1, 2, 3];
assert.false(some(array, (value, key, that) => that !== array));
if (STRICT) {
assert.throws(() => some(null, () => { /* empty */ }), TypeError);
assert.throws(() => some(undefined, () => { /* empty */ }), TypeError);
}
});