mirror of
https://github.com/denoland/deno.git
synced 2025-09-30 22:21:15 +00:00
refactor: Move URL to op_crates/web (#7544)
This commit is contained in:
parent
a6f4559174
commit
6453cb7567
11 changed files with 75 additions and 83 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue