UNPKG

@stackoverfloweth/vue-compositions

Version:

A collection of reusable vue compositions.

12 lines 259 B
// https://stackoverflow.com/a/62557418/3511012 export function globalExists(varName) { const globalEval = eval; try { globalEval(varName); return true; } catch { return false; } } //# sourceMappingURL=global.js.map