2019-10-22 01:36:01 +11:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-10-28 12:58:35 -07:00
|
|
|
const url_ = Deno.args[1];
|
|
|
|
const res = await fetch(url_);
|
2019-10-27 06:04:42 -07:00
|
|
|
await Deno.copy(Deno.stdout, res.body);
|