-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsidebarsEcmaScript.js
More file actions
85 lines (85 loc) · 2.02 KB
/
Copy pathsidebarsEcmaScript.js
File metadata and controls
85 lines (85 loc) · 2.02 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
module.exports = {
ECMAScript: {
Object: [
'Object/hasOwnProperty',
'Object/getPrototypeOf',
'Object/isPrototypeOf',
'Object/propertyIsEnumerable',
'Object/assign',
'Object/create',
'Object/is',
'Object/defineProperty',
'Object/defineProperties',
'Object/keys',
'Object/values',
'Object/entries',
'Object/fromEntries',
'Object/getOwnPropertyDescriptor',
'Object/getOwnPropertyDescriptors',
'Object/getOwnPropertyNames',
'Object/getOwnPropertySymbols',
'Object/preventExtensions',
'Object/seal',
'Object/freeze',
'Object/isExtensible',
'Object/isSealed',
'Object/isFrozen',
'Object/setPrototypeOf',
],
String: [
'String/charAt',
'String/charCodeAt',
'String/codePointAt',
'String/concat',
'String/endsWith',
'String/includes',
'String/indexOf',
'String/lastIndexOf',
'String/localeCompare',
'String/match',
'String/normalize',
'String/padEnd',
'String/padStart',
'String/repeat',
'String/replace',
'String/search',
'String/slice',
'String/split',
'String/startsWith',
'String/fromCharCode',
'String/fromCodePoint',
'String/substr',
'String/substring',
'String/to...Case',
'String/trim',
],
Array: [
'Array/from',
'Array/of',
'Array/isArray',
'Array/concat',
'Array/copyWithin',
'Array/entries',
'Array/flat',
],
Math: [
'Math/sin',
'Math/tan',
'Math/cos',
'Math/abs',
'Math/clz32',
'Math/floor',
'Math/formulas',
'Math/fround',
'Math/imul',
'Math/max',
'Math/random',
'Math/sign',
'Math/trunc',
],
Function: ['Function/call', 'Function/apply', 'Function/bind'],
Generator: ['Generator/generator'],
Promise: ['Promise/promise', 'Promise/promiseA+', 'Promise/promiseWheel'],
Proxy: ['Proxy/proxy'],
},
}