5 lines
117 B
TypeScript
5 lines
117 B
TypeScript
const holder: { root?: typeof globalThis } = {};
|
|
|
|
holder.root = globalThis;
|
|
holder.root.indexedDB.open("forbidden");
|