-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Yousif Al-Raheem edited this page Jan 9, 2020
·
4 revisions
This is a library of front-end utilities that can be used in any project regardless of the library/framework used (e.g. React, Angular). It's all written in Typescript utilizing its powerful type checking.
npm install @sebgroup/frontend-tools
import { deepCopy } from "@sebgroup/fronted-tools/deepCopy";
const myObj = { a: 1, b: "two", c: new Date() }
const newObj = deepCopy(myObj);