mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
20 lines
454 B
JavaScript
20 lines
454 B
JavaScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
((window) => {
|
|
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);
|