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