2019-10-16 00:11:08 +08:00
|
|
|
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'
|
|
|
|
|
2019-10-16 00:22:32 +08:00
|
|
|
export const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED)
|