-
Notifications
You must be signed in to change notification settings - Fork 3
/
es5.txt
43 lines (36 loc) · 1.09 KB
/
es5.txt
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
Object.create
Object.defineProperty
Object.defineProperties
Object.getPrototypeOf
Object.keys df.keys
Object.seal
Object.freeze
Object.preventExtensions
Object.isSealed
Object.isFrozen
Object.isExtensible
Object.getOwnPropertyDescriptor
Object.getOwnPropertyNames
Date.prototype.toISOString date/stamp.toISOString
Date.now
Array.isArray _base/lang.isArray
JSON json
Function.prototype.bind _base/lang.hitch, _base/lang.partial
String.prototype.trim _base/lang.trim
Array.prototype.indexOf _base/array.indexOf
Array.prototype.lastIndexOf _base/array.lastIndexOf
Array.prototype.every _base/array.every
Array.prototype.some _base/array.some
Array.prototype.forEach _base/array.forEach
Array.prototype.map _base/array.map
Array.prototype.filter _base/array.filter
Array.prototype.reduce lang/functional/reduce
Array.prototype.reduceRight lang/functional/reduceRight
Getter in property initializer
Setter in property initializer
Property access on strings
Reserved words as property names
Zero-width chars in identifiers
parseInt() ignores leading zeros
Immutable undefined
Strict mode