0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/std/examples/curl.ts
2019-10-27 09:04:42 -04:00

4 lines
171 B
TypeScript

// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const url = Deno.args[1];
const res = await fetch(url);
await Deno.copy(Deno.stdout, res.body);