js-utils-pack
v1.0.5
Published
A collection of js utility.
Downloads
34
Readme
JS-utils-pack
A collection of utilities we used in daily life while making a web app.
How to use
Install the package from npm by using.
npm install js-utils-pack
or
yarn add js-utils-pack
Once installed, Import the packge in your working file and use it.
Here you have two options to import the method, one is default and seconf one is named import.
Default import
import JSutils from 'js-utils-pack' // Now you can use a method by calling it.
// ex -
JSutils.log('Yuppie...!!', 'This is Working.')
Named Import
import {log} from 'js-utils-pack' // Now you can use a method by calling it.
// ex -
log('Yuppie...!!', 'This is Working.')