deno.land / x / deno@v1.28.2 / ext / fetch / 01_fetch_util.js

01_fetch_util.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license."use strict";
((window) => { const { TypeError } = window.__bootstrap.primordials; function requiredArguments( name, length, required, ) { if (length < required) { const errMsg = `${name} requires at least ${required} argument${ required === 1 ? "" : "s" }, but only ${length} present`; throw new TypeError(errMsg); } }
window.__bootstrap.fetchUtil = { requiredArguments, };})(this);
deno

Version Info

Tagged at
a year ago