es2018.js
4.32 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
'use strict';
var bind = require('function-bind');
var keys = require('object-keys');
var ES2017 = require('./es2017');
var assign = require('./helpers/assign');
var forEach = require('./helpers/forEach');
var GetIntrinsic = require('./GetIntrinsic');
var $String = GetIntrinsic('%String%');
var $Object = GetIntrinsic('%Object%');
var $SymbolProto = GetIntrinsic('%SymbolPrototype%', true);
var $SymbolValueOf = $SymbolProto ? bind.call(Function.call, $SymbolProto.valueOf) : null;
var $StringProto = GetIntrinsic('%StringPrototype%');
var $charAt = bind.call(Function.call, $StringProto.charAt);
var $PromiseResolveOrig = GetIntrinsic('%Promise_resolve%', true);
var $PromiseResolve = $PromiseResolveOrig ? bind.call(Function.call, $PromiseResolveOrig) : null;
var $isEnumerable = bind.call(Function.call, GetIntrinsic('%ObjectPrototype%').propertyIsEnumerable);
var $pushApply = bind.call(Function.apply, GetIntrinsic('%ArrayPrototype%').push);
var $gOPS = $SymbolValueOf ? $Object.getOwnPropertySymbols : null;
var OwnPropertyKeys = function OwnPropertyKeys(ES, source) {
var ownKeys = keys(source);
if ($gOPS) {
$pushApply(ownKeys, $gOPS(source));
}
return ownKeys;
};
var ES2018 = assign(assign({}, ES2017), {
EnumerableOwnPropertyNames: ES2017.EnumerableOwnProperties,
// https://ecma-international.org/ecma-262/9.0/#sec-thissymbolvalue
thisSymbolValue: function thisSymbolValue(value) {
if (!$SymbolValueOf) {
throw new SyntaxError('Symbols are not supported; thisSymbolValue requires that `value` be a Symbol or a Symbol object');
}
if (this.Type(value) === 'Symbol') {
return value;
}
return $SymbolValueOf(value);
},
// https://www.ecma-international.org/ecma-262/9.0/#sec-isstringprefix
IsStringPrefix: function IsStringPrefix(p, q) {
if (this.Type(p) !== 'String') {
throw new TypeError('Assertion failed: "p" must be a String');
}
if (this.Type(q) !== 'String') {
throw new TypeError('Assertion failed: "q" must be a String');
}
if (p === q || p === '') {
return true;
}
var pLength = p.length;
var qLength = q.length;
if (pLength >= qLength) {
return false;
}
// assert: pLength < qLength
for (var i = 0; i < pLength; i += 1) {
if ($charAt(p, i) !== $charAt(q, i)) {
return false;
}
}
return true;
},
// https://www.ecma-international.org/ecma-262/9.0/#sec-tostring-applied-to-the-number-type
NumberToString: function NumberToString(m) {
if (this.Type(m) !== 'Number') {
throw new TypeError('Assertion failed: "m" must be a String');
}
return $String(m);
},
// https://www.ecma-international.org/ecma-262/9.0/#sec-copydataproperties
CopyDataProperties: function CopyDataProperties(target, source, excludedItems) {
if (this.Type(target) !== 'Object') {
throw new TypeError('Assertion failed: "target" must be an Object');
}
if (!this.IsArray(excludedItems)) {
throw new TypeError('Assertion failed: "excludedItems" must be a List of Property Keys');
}
for (var i = 0; i < excludedItems.length; i += 1) {
if (!this.IsPropertyKey(excludedItems[i])) {
throw new TypeError('Assertion failed: "excludedItems" must be a List of Property Keys');
}
}
if (typeof source === 'undefined' || source === null) {
return target;
}
var ES = this;
var fromObj = ES.ToObject(source);
var sourceKeys = OwnPropertyKeys(ES, fromObj);
forEach(sourceKeys, function (nextKey) {
var excluded = false;
forEach(excludedItems, function (e) {
if (ES.SameValue(e, nextKey) === true) {
excluded = true;
}
});
var enumerable = $isEnumerable(fromObj, nextKey) || (
// this is to handle string keys being non-enumerable in older engines
typeof source === 'string'
&& nextKey >= 0
&& ES.IsInteger(ES.ToNumber(nextKey))
);
if (excluded === false && enumerable) {
var propValue = ES.Get(fromObj, nextKey);
ES.CreateDataProperty(target, nextKey, propValue);
}
});
return target;
},
// https://ecma-international.org/ecma-262/9.0/#sec-promise-resolve
PromiseResolve: function PromiseResolve(C, x) {
if (!$PromiseResolve) {
throw new SyntaxError('This environment does not support Promises.');
}
return $PromiseResolve(C, x);
}
});
delete ES2018.EnumerableOwnProperties; // replaced with EnumerableOwnPropertyNames
delete ES2018.IsPropertyDescriptor; // not an actual abstract operation
module.exports = ES2018;