summaryrefslogtreecommitdiff
path: root/cli/rt/01_web_util.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-09-17 19:13:20 +0200
committerGitHub <noreply@github.com>2020-09-17 19:13:20 +0200
commit6453cb75670b6aefbfc712c7d05b1135bee6226c (patch)
treeab088478c374f7228f6891919dafcf01b66be037 /cli/rt/01_web_util.js
parenta6f4559174c64066d45210b02f6a06aa2f67c2cd (diff)
refactor: Move URL to op_crates/web (#7544)
Diffstat (limited to 'cli/rt/01_web_util.js')
-rw-r--r--cli/rt/01_web_util.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/rt/01_web_util.js b/cli/rt/01_web_util.js
index 596dcbfcd..d64ef28c3 100644
--- a/cli/rt/01_web_util.js
+++ b/cli/rt/01_web_util.js
@@ -41,19 +41,6 @@
return Object.prototype.hasOwnProperty.call(obj, v);
}
- /** Returns whether o is iterable. */
- function isIterable(
- o,
- ) {
- // checks for null and undefined
- if (o == null) {
- return false;
- }
- return (
- typeof (o)[Symbol.iterator] === "function"
- );
- }
-
const objectCloneMemo = new WeakMap();
function cloneArrayBuffer(
@@ -192,7 +179,6 @@
requiredArguments,
immutableDefine,
hasOwnProperty,
- isIterable,
cloneValue,
defineEnumerableProps,
getHeaderValueParams,