1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-14 11:27:57 -05:00
denoland-deno/cli/tests/testdata/run/webstorage/serialization.ts
Bartek Iwańczuk 8e67bf829a
Revert "feat: deprecate window global (#22057)" (#22084)
This reverts commit 930ce20870.

This is producing false-positives that are not actionable to users.
We're gonna address this in another release.
2024-01-24 20:43:31 +01:00

4 lines
119 B
TypeScript

window.sessionStorage.setItem("hello", "deno");
console.log(window.localStorage);
console.log(window.sessionStorage);