8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
export function bypassThroughPropertyDescriptor() {
|
|
const descriptor = Object.getOwnPropertyDescriptor(
|
|
globalThis,
|
|
"indexedDB",
|
|
);
|
|
return (descriptor?.value as IDBFactory).open("forbidden");
|
|
}
|