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{CiNiiClient}from"https://deno.land/x/cinii/mod.ts";constclient=newCiNiiClient({appId: "your_app_id"});// or, if not specified, refer to the environment variable CINII_APP_IDconstres=awaitclient.all({q: "QUIC",count: 100,});assertEquals(res.items.length,100);consttitles=res.items.map((i)=>i.title);assertArrayIncludes(titles,["Improving the performance of HTTP/3 communications when communicating simultaneously which uses CUBIC TCP and TCP BBR",]);