vue3-yuanma/packages/shared/src/globalsWhitelist.ts

8 lines
272 B
TypeScript
Raw Normal View History

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(',')
)