From 684c357136fd44f9d5a1b8bb4402400ed1354677 Mon Sep 17 00:00:00 2001 From: Andy Hayden Date: Fri, 30 Apr 2021 12:51:48 -0700 Subject: Rename crate_ops to extensions (#10431) --- op_crates/fetch/01_fetch_util.js | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 op_crates/fetch/01_fetch_util.js (limited to 'op_crates/fetch/01_fetch_util.js') diff --git a/op_crates/fetch/01_fetch_util.js b/op_crates/fetch/01_fetch_util.js deleted file mode 100644 index ff76421a1..000000000 --- a/op_crates/fetch/01_fetch_util.js +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -"use strict"; - -((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); -- cgit v1.2.3