Skip to content
Yousif Al-Raheem edited this page Jan 9, 2020 · 4 revisions

Welcome to the frontend-tools wiki!

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.

Install

npm install @sebgroup/frontend-tools

Basic usage

import { deepCopy } from "@sebgroup/fronted-tools/deepCopy";

const myObj = { a: 1, b: "two", c: new Date() }
const newObj = deepCopy(myObj);
Clone this wiki locally