deepcopy-esm
Version:
ESM compatible deepcopy
150 lines (149 loc) • 5.18 kB
JavaScript
/**
* This code was copied from
* https://github.com/sasaplus1/deepcopy.js/tree/38be369541c458ee6b49215f3ca6101321b2f8ba/src and
* modified to be ESM compatible and fix code health (linting, formatting, etc.).
*
* The original code has the following license:
*
* (The MIT LICENSE)
*
* Copyright (c) 2013 sasa+1 <sasaplus1@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
import { cloneBuffer } from './buffer.js';
import { typeArguments, typeArray, typeMap, typeObject, typeSet } from './detector.js';
/**
* Clone value.
*
* @category Internal
*/
export function clone(value, valueType) {
// eslint-disable-next-line sonarjs/max-switch-cases
switch (valueType) {
// deep copy
case 'ArrayBuffer':
return value.slice(0);
case 'Boolean':
// eslint-disable-next-line sonarjs/no-primitive-wrappers, unicorn/new-for-builtins
return new Boolean(value.valueOf());
case 'Buffer':
return cloneBuffer(value);
case 'DataView':
return new DataView(value.buffer);
case 'Date':
return new Date(value.getTime());
case 'Number':
// eslint-disable-next-line sonarjs/no-primitive-wrappers, unicorn/new-for-builtins
return new Number(value);
case 'RegExp':
return new RegExp(value.source, value.flags);
case 'String':
// eslint-disable-next-line sonarjs/no-primitive-wrappers, unicorn/new-for-builtins
return new String(value);
// typed arrays
case 'Float32Array':
return new Float32Array(value);
case 'Float64Array':
return new Float64Array(value);
case 'Int16Array':
return new Int16Array(value);
case 'Int32Array':
return new Int32Array(value);
case 'Int8Array':
return new Int8Array(value);
case 'Uint16Array':
return new Uint16Array(value);
case 'Uint32Array':
return new Uint32Array(value);
case 'Uint8Array':
return new Uint8Array(value);
case 'Uint8ClampedArray':
return new Uint8ClampedArray(value);
// shallow copy
case 'Array Iterator':
return value;
case 'Map Iterator':
return value;
case 'Promise':
return value;
case 'Set Iterator':
return value;
case 'String Iterator':
return value;
case 'function':
return value;
case 'global':
return value;
// NOTE: WeakMap and WeakSet cannot get entries
case 'WeakMap':
return value;
case 'WeakSet':
return value;
// primitives
case 'boolean':
return value;
case 'null':
return value;
case 'number':
return value;
case 'string':
return value;
case 'symbol':
return value;
case 'undefined':
return value;
// collections
// NOTE: return empty value: because recursively copy later.
case typeArguments:
return [];
case typeArray:
return [];
case typeMap:
return new Map();
case typeObject:
return {};
case typeSet:
return new Set();
// NOTE: type-detect returns following types
// 'Location'
// 'Document'
// 'MimeTypeArray'
// 'PluginArray'
// 'HTMLQuoteElement'
// 'HTMLTableDataCellElement'
// 'HTMLTableHeaderCellElement'
default:
return value;
}
}
/**
* Copy value with customizer function.
*
* @category Internal
*/
export function copy(value, valueType, customizer = null) {
if (customizer && valueType === 'Object') {
const result = customizer(value, valueType);
if (result !== undefined) {
return result;
}
}
return clone(value, valueType);
}