mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
initial
This commit is contained in:
39
src/globals.js
Normal file
39
src/globals.js
Normal file
@@ -0,0 +1,39 @@
|
||||
export const globals = new Set([
|
||||
'globalThis',
|
||||
// TODO Promise,
|
||||
// TODO Symbol
|
||||
'Set',
|
||||
'Map',
|
||||
"Infinity",
|
||||
"NaN",
|
||||
"undefined",
|
||||
"Function",
|
||||
"Object",
|
||||
"Array",
|
||||
"Number",
|
||||
"String",
|
||||
"Boolean",
|
||||
"Date",
|
||||
"Math",
|
||||
"RegExp",
|
||||
"JSON",
|
||||
"Error",
|
||||
"EvalError",
|
||||
"RangeError",
|
||||
"ReferenceError",
|
||||
"SyntaxError",
|
||||
"TypeError",
|
||||
"URIError",
|
||||
"isNaN",
|
||||
"isFinite",
|
||||
"parseFloat",
|
||||
"parseInt",
|
||||
"eval",
|
||||
"escape",
|
||||
"unescape",
|
||||
"decodeURI",
|
||||
"decodeURIComponent",
|
||||
"encodeURI",
|
||||
"encodeURIComponent",
|
||||
"console",
|
||||
])
|
||||
Reference in New Issue
Block a user