summaryrefslogtreecommitdiff
path: root/std/examples/curl.ts
blob: 39e917591c04a81d1adaf394f89eae85d1f9ce7d (plain)
1
2
3
4
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const url_ = Deno.args[0];
const res = await fetch(url_);
await Deno.copy(Deno.stdout, res.body);