globalsWhitelist.ts 352 B

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