Skip to main content
Module

x/vue3_reactivity/shared/globalsWhitelist.ts

vue3_reactivity is forck by @vue/reactivity for deno.
Latest
File
import { makeMap } from './makeMap.ts'
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,BigInt'
export const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED)