0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 20:25:12 -05:00
denoland-deno/std/examples/curl.ts

5 lines
171 B
TypeScript
Raw Normal View History

// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2019-10-27 06:04:42 -07:00
const url = Deno.args[1];
const res = await fetch(url);
await Deno.copy(Deno.stdout, res.body);