mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
41 lines
555 B
JavaScript
41 lines
555 B
JavaScript
export const globals = new Set([
|
|
'globalThis',
|
|
'Promise',
|
|
// TODO Symbol
|
|
'URL',
|
|
'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",
|
|
])
|