Skip to main content
Module

x/dnt/tests/undici_project/mod.ts

Deno to npm package build tool.
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
export async function getJson(url: string) { const response = await fetch(url); if (!response.ok) { throw new Error(response.statusText); } return response.json();}