Files
deno/std/examples/curl.ts
2019-10-28 15:58:35 -04:00

5 lines
173 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);