You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{createCache}from"jsr:@deno/cache-dir@0.8.0";import{createGraph}from"jsr:@deno/graph@0.69.7";const{ load }=createCache();{// the object returned by `load` is modified,awaitcreateGraph("https://examples.deno.land/hello-world.ts",{ load });}{// which can lead to unexpected behavior elsewhere.constres=awaitload("https://examples.deno.land/hello-world.ts");if(res?.kind==="module"){constcontent=res.content;// this should print `true` but actually prints `false`.console.log(typeofcontent==="string"||ArrayBuffer.isView(content));}}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: