forked from zloirock/core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes.array.unshift.js
24 lines (19 loc) · 908 Bytes
/
es.array.unshift.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
import { REDEFINABLE_ARRAY_LENGTH_DESCRIPTOR, STRICT } from '../helpers/constants';
const { defineProperty } = Object;
QUnit.test('Array#unshift', assert => {
const { unshift } = Array.prototype;
assert.isFunction(unshift);
assert.arity(unshift, 1);
assert.name(unshift, 'unshift');
assert.looksNative(unshift);
assert.nonEnumerable(Array.prototype, 'unshift');
assert.same(unshift.call([1], 0), 2, 'proper result');
if (STRICT) {
if (REDEFINABLE_ARRAY_LENGTH_DESCRIPTOR) {
assert.throws(() => unshift.call(defineProperty([], 'length', { writable: false }), 1), TypeError, 'non-writable length, with arg');
assert.throws(() => unshift.call(defineProperty([], 'length', { writable: false })), TypeError, 'non-writable length, without arg');
}
assert.throws(() => unshift.call(null), TypeError);
assert.throws(() => unshift.call(undefined), TypeError);
}
});