2020-07-19 13:49:44 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
((window) => {
|
2020-09-19 17:30:59 -04:00
|
|
|
const illegalConstructorKey = Symbol("illegalConstructorKey");
|
|
|
|
|
2020-07-19 13:49:44 -04:00
|
|
|
function isInvalidDate(x) {
|
|
|
|
return isNaN(x.getTime());
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function immutableDefine(
|
|
|
|
o,
|
|
|
|
p,
|
|
|
|
value,
|
|
|
|
) {
|
|
|
|
Object.defineProperty(o, p, {
|
|
|
|
value,
|
|
|
|
configurable: false,
|
|
|
|
writable: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function hasOwnProperty(obj, v) {
|
|
|
|
if (obj == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return Object.prototype.hasOwnProperty.call(obj, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
const objectCloneMemo = new WeakMap();
|
|
|
|
|
|
|
|
function cloneArrayBuffer(
|
|
|
|
srcBuffer,
|
|
|
|
srcByteOffset,
|
|
|
|
srcLength,
|
|
|
|
_cloneConstructor,
|
|
|
|
) {
|
|
|
|
// this function fudges the return type but SharedArrayBuffer is disabled for a while anyway
|
|
|
|
return srcBuffer.slice(
|
|
|
|
srcByteOffset,
|
|
|
|
srcByteOffset + srcLength,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Clone a value in a similar way to structured cloning. It is similar to a
|
|
|
|
* StructureDeserialize(StructuredSerialize(...)). */
|
|
|
|
function cloneValue(value) {
|
|
|
|
switch (typeof value) {
|
|
|
|
case "number":
|
|
|
|
case "string":
|
|
|
|
case "boolean":
|
|
|
|
case "undefined":
|
|
|
|
case "bigint":
|
|
|
|
return value;
|
|
|
|
case "object": {
|
|
|
|
if (objectCloneMemo.has(value)) {
|
|
|
|
return objectCloneMemo.get(value);
|
|
|
|
}
|
|
|
|
if (value === null) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
if (value instanceof Date) {
|
|
|
|
return new Date(value.valueOf());
|
|
|
|
}
|
|
|
|
if (value instanceof RegExp) {
|
|
|
|
return new RegExp(value);
|
|
|
|
}
|
|
|
|
if (value instanceof SharedArrayBuffer) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
if (value instanceof ArrayBuffer) {
|
|
|
|
const cloned = cloneArrayBuffer(
|
|
|
|
value,
|
|
|
|
0,
|
|
|
|
value.byteLength,
|
|
|
|
ArrayBuffer,
|
|
|
|
);
|
|
|
|
objectCloneMemo.set(value, cloned);
|
|
|
|
return cloned;
|
|
|
|
}
|
|
|
|
if (ArrayBuffer.isView(value)) {
|
|
|
|
const clonedBuffer = cloneValue(value.buffer);
|
|
|
|
// Use DataViewConstructor type purely for type-checking, can be a
|
|
|
|
// DataView or TypedArray. They use the same constructor signature,
|
|
|
|
// only DataView has a length in bytes and TypedArrays use a length in
|
|
|
|
// terms of elements, so we adjust for that.
|
|
|
|
let length;
|
|
|
|
if (value instanceof DataView) {
|
|
|
|
length = value.byteLength;
|
|
|
|
} else {
|
|
|
|
length = value.length;
|
|
|
|
}
|
|
|
|
return new (value.constructor)(
|
|
|
|
clonedBuffer,
|
|
|
|
value.byteOffset,
|
|
|
|
length,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (value instanceof Map) {
|
|
|
|
const clonedMap = new Map();
|
|
|
|
objectCloneMemo.set(value, clonedMap);
|
|
|
|
value.forEach((v, k) => clonedMap.set(k, cloneValue(v)));
|
|
|
|
return clonedMap;
|
|
|
|
}
|
|
|
|
if (value instanceof Set) {
|
|
|
|
const clonedSet = new Map();
|
|
|
|
objectCloneMemo.set(value, clonedSet);
|
|
|
|
value.forEach((v, k) => clonedSet.set(k, cloneValue(v)));
|
|
|
|
return clonedSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
const clonedObj = {};
|
|
|
|
objectCloneMemo.set(value, clonedObj);
|
|
|
|
const sourceKeys = Object.getOwnPropertyNames(value);
|
|
|
|
for (const key of sourceKeys) {
|
|
|
|
clonedObj[key] = cloneValue(value[key]);
|
|
|
|
}
|
|
|
|
return clonedObj;
|
|
|
|
}
|
|
|
|
case "symbol":
|
|
|
|
case "function":
|
|
|
|
default:
|
|
|
|
throw new DOMException("Uncloneable value in stream", "DataCloneError");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** A helper function which ensures accessors are enumerable, as they normally
|
|
|
|
* are not. */
|
|
|
|
function defineEnumerableProps(
|
|
|
|
Ctor,
|
|
|
|
props,
|
|
|
|
) {
|
|
|
|
for (const prop of props) {
|
|
|
|
Reflect.defineProperty(Ctor.prototype, prop, { enumerable: true });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.__bootstrap.webUtil = {
|
2020-09-19 17:30:59 -04:00
|
|
|
illegalConstructorKey,
|
2020-07-19 13:49:44 -04:00
|
|
|
isInvalidDate,
|
|
|
|
requiredArguments,
|
|
|
|
immutableDefine,
|
|
|
|
hasOwnProperty,
|
|
|
|
cloneValue,
|
|
|
|
defineEnumerableProps,
|
|
|
|
};
|
|
|
|
})(this);
|