Skip to content

Commit

Permalink
refactor: order set
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Dec 16, 2021
1 parent 5d85fe0 commit e86d969
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions src/utils/BUILTINS.ts
@@ -1,63 +1,63 @@
const BUILTINS: ReadonlySet<string> = new Set([
'Infinity',
'NaN',
'undefined',
'null',
'true',
'false',
'eval',
'uneval',
'isFinite',
'isNaN',
'parseFloat',
'parseInt',
'decodeURI',
'decodeURIComponent',
'encodeURI',
'encodeURIComponent',
'escape',
'unescape',
'Object',
'Function',
'Array',
'ArrayBuffer',
'Boolean',
'Symbol',
'DataView',
'Date',
'Error',
'EvalError',
'Float32Array',
'Float64Array',
'Function',
'Generator',
'GeneratorFunction',
'Infinity',
'Int16Array',
'Int32Array',
'Int8Array',
'InternalError',
'Intl',
'JSON',
'Map',
'Math',
'NaN',
'Number',
'Object',
'Promise',
'Proxy',
'RangeError',
'ReferenceError',
'Reflect',
'RegExp',
'SIMD',
'Set',
'String',
'Symbol',
'SyntaxError',
'TypeError',
'URIError',
'Number',
'Math',
'Date',
'String',
'RegExp',
'Array',
'Int8Array',
'Uint8Array',
'Uint8ClampedArray',
'Int16Array',
'Uint16Array',
'Int32Array',
'Uint32Array',
'Float32Array',
'Float64Array',
'Map',
'Set',
'Uint8Array',
'Uint8ClampedArray',
'WeakMap',
'WeakSet',
'SIMD',
'ArrayBuffer',
'DataView',
'JSON',
'Promise',
'Generator',
'GeneratorFunction',
'Reflect',
'Proxy',
'Intl'
'decodeURI',
'decodeURIComponent',
'encodeURI',
'encodeURIComponent',
'escape',
'eval',
'false',
'isFinite',
'isNaN',
'null',
'parseFloat',
'parseInt',
'true',
'undefined',
'unescape',
'uneval'
]);

export default BUILTINS;

0 comments on commit e86d969

Please sign in to comment.