Files
tech-log-frontend/tests/fixtures/browser-file-storage-boundaries/forbidden/property-descriptor-access.ts
T

8 lines
208 B
TypeScript

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