@ibnlanre/clone
v0.0.1
Published
clone any and every JS type
Downloads
2
Readme
Clone
Clone any and every JS type, well somewhat.
Install
npm i @ibnlanre/clone
Import
// Browser
<script src="https://unpkg.com/@ibnlanre/clone"></script>;
// ES6 Import
import clone from "@ibnlanre/clone"
// NodeJS Require
const clone = require("@ibnlanre/clone");
Primitives
clone(undefined); //-> undefined
clone(true); //-> true
clone(0); //-> 0
clone("foo"); //-> 'foo'
clone(BigInt(10)); //-> 10n
clone(Symbol("foo")); //-> Symbol(foo)
clone(null); //-> null
Reference Types
Cyclic Objects
const obj = { foo: { bar: null } };
obj.foo.bar = obj.foo;
clone(obj); //=> { foo: { bar: [Circular] } }
Functions
Promises
let myFirstPromise = new Promise((resolve) =>
setTimeout(() => resolve("Success!"), 250)
).then((message) => console.log("Yay! " + message));
clone(myFirstPromise);
/*
Promise { <pending> }
Yay! Success!
*/
Function Statements
function unique(arr) {
if (!Array.isArray(arr)) {
throw new TypeError("array-unique expects an array.");
}
return arr.length;
}
unique.prototype.greet = () => "hello";
clone(unique)([1, 2, 3]); //-> 3
clone(unique).prototype.greet(); //-> hello
Function Expressions
let test = function () {
return 0;
};
clone(test); //-> [Function: test]
clone(test).toString(); //-> function(){ return 0 }
clone(test) === test; //-> false
Constructor Functions
var Person = function (name) {
this.name = name;
this.canTalk = true;
};
Person.prototype.greet = function () {
if (this.canTalk) {
console.log("Hi, I am " + this.name);
}
};
console.log("greet" in clone(Person).prototype); // true
console.log("greet" in Person); // false
Asynchronous Functions
clone(async (a, b) => a + b); //-> async (a, b) => a + b
Function Constructors
clone(new Function("a", "b", "return 'hello'"));
/*
function anonymous(a,b
) {
return 'hello'
}
*/
Generator Functions
clone(function* (b, c) {
yield 0;
}); //-> [GeneratorFunction]
Arrow functions
clone(() => {}).toString(); //-> () => { }
Arrays
let sequence = [1, 1, [2, 5], 3, 5];
clone(sequence); //-> [1, 1, [2, 5], 3, 5]
Typed Arrays
clone(new Int8Array(2)); //-> Int8Array [ 0, 0 ]
clone(new Uint8Array(2)); //-> Uint8Array [ 0, 0 ]
clone(new Uint8ClampedArray(new ArrayBuffer(6), 1, 4));
//-> Uint8ClampedArray [ 0, 0, 0, 0 ]
clone(new Int16Array(2)); //-> Int16Array [ 0, 0 ]
clone(new Uint16Array(2)); //-> Uint16Array [ 0, 0 ]
clone(new Int32Array(2)); //-> Int32Array [ 0, 0 ]
clone(new Uint32Array(2)); //-> Uint32Array [ 0, 0 ]
clone(new Float32Array(2).BYTES_PER_ELEMENT); //-> 4
clone(new Float64Array(2).BYTES_PER_ELEMENT); //-> 8
clone(new BigInt64Array([21n, 31n])); //-> BigInt64Array [ 21n, 31n ]
var iterable = (function* () {
yield* [1n, 2n, 3n];
})();
var biguint64 = new BigUint64Array(iterable);
clone(biguint64); //-> BigUint64Array[1n, 2n, 3n]
Buffers
clone(new ArrayBuffer(8));
/*
ArrayBuffer {
[Uint8Contents]: <00 00 00 00 00 00 00 00>,
byteLength: 8
}
*/
clone(Buffer.from("hello", "utf16le"));
//-> <Buffer 68 00 65 00 6c 00 6c 00 6f 00>
Dates
clone(new Date("1986-05-21T00:00:00.000Z"));
//-> 1986-05-21T00:00:00.000Z
Symbols
const a = Symbol("a");
class Foobar {
constructor(_a) {
this[a] = { [_a]: null };
}
}
const foobar = new Foobar("aaa");
foobar[a]["aaa"] = foobar[a];
foobar; //-> Foobar { [Symbol(a)]: { aaa: [Circular] } }
stringify(a); //-> {"legend":[],"main":"_sm_Symbol(a)"}
parse(stringify(foobar)); //-> { [Symbol(a)]: { aaa: [Circular] } }
console.log(clone(a) === a); //-> true