8 lines
272 B
TypeScript
8 lines
272 B
TypeScript
|
export const globalsWhitelist = new Set(
|
||
|
(
|
||
|
'Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,' +
|
||
|
'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +
|
||
|
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl'
|
||
|
).split(',')
|
||
|
)
|