DigitalConsumer.FixMyGlass/node_modules/@vue/devtools-api/lib/esm/env.js
2021-09-20 17:57:19 -04:00

11 lines
287 B
JavaScript

export function getDevtoolsGlobalHook() {
return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;
}
export function getTarget() {
// @ts-ignore
return typeof navigator !== 'undefined'
? window
: typeof global !== 'undefined'
? global
: {};
}