summaryrefslogtreecommitdiff
path: root/std/examples/curl.ts
blob: e020016f8e8361b090fed0e85f5475c3cd2b30f4 (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);