summaryrefslogtreecommitdiff
path: root/std/examples/curl.ts
blob: b62e58b27aa6888a85b2d1d478a184de1efa9b2f (plain)
1
2
3
4
// 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);