1.0.4 • Published 2 years ago

g0blin-utils v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

g0blin-utils

a JavaScript tool lib.

example

import { deepCopy } from 'g0blin-utils';

const obj = { str: 'string', obj: {}, arr: [] };
const obj2 = deepCopy(obj);  // { str: 'string', obj: {}, arr: [] }

or

import utils from 'g0blin-utils';

const obj = { str: 'string', obj: {}, arr: [] };
const obj2 = utils.deepCopy(obj);  // { str: 'string', obj: {}, arr: [] }

author

g0blin

version

1.0.3

license

ISC