mirror of https://github.com/vuejs/core.git
8 lines
317 B
TypeScript
8 lines
317 B
TypeScript
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'
|
|
]
|
|
)
|