Skip to main content
This package has been archived, and as such it is read-only.
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
Published
4 months ago (0.0.4)
Package root>src>net>FetchAPI.ts
export async function fetchJSON( url: string ):Promise<any> { const response = await fetch( url ) const json = await response.json() return json }