2022-05-04 02:25:36 +03:00
|
|
|
# js-utils
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
```bash
|
|
|
|
// with npm
|
2022-05-08 20:28:12 +03:00
|
|
|
npm i --save @flare/js-utils --registry https://toodle.ddns.net/public-node-registry
|
2022-05-04 02:25:36 +03:00
|
|
|
|
|
|
|
// with yarn
|
2022-05-08 20:28:12 +03:00
|
|
|
yarn add @flare/js-utils --registry https://toodle.ddns.net/public-node-registry
|
2022-05-04 02:25:36 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```jsx
|
2022-05-08 21:57:02 +03:00
|
|
|
import { typeValidator, localStorage } from "@flare/js-utils";
|
2022-05-04 02:25:36 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
**1.0.0**
|
2022-05-08 05:35:41 +03:00
|
|
|
This version includes data type validators and local storage utils
|