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

9 lines
338 B
TypeScript
Raw Normal View History

import { makeMap } from './makeMap'
const GLOBALS_WHITE_LISTED =
'Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,' +
'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl'
export const isGloballyWhitelisted = makeMap(GLOBALS_WHITE_LISTED)