https://github.com/sonukr/js-utils
A collection of utilities we used in daily life while making a web app.
https://github.com/sonukr/js-utils
browser cookie datetime image javascript library localstorage react responsive utility
Last synced: 11 months ago
JSON representation
A collection of utilities we used in daily life while making a web app.
- Host: GitHub
- URL: https://github.com/sonukr/js-utils
- Owner: Sonukr
- Created: 2020-07-23T04:27:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T12:19:47.000Z (about 3 years ago)
- Last Synced: 2024-04-25T01:42:14.466Z (over 1 year ago)
- Topics: browser, cookie, datetime, image, javascript, library, localstorage, react, responsive, utility
- Language: JavaScript
- Homepage: https://sonukr.github.io/JS-Utils/docs/index.html
- Size: 2.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JS-utils-pack
A collection of utilities we used in daily life while making a web app.
______________________________________________________

[](https://opensource.org/licenses/isc)
[](https://www.npmjs.com/package/js-utils-pack)




### How to use
[Documentation](https://sonukr.github.io/JS-Utils/docs/index.html)
Install the package from npm by using.
```sh
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
```js
import JSutils from 'js-utils-pack' // Now you can use a method by calling it.
// ex -
JSutils.log('Yuppie...!!', 'This is Working.')
```
#### Named Import
```js
import {log} from 'js-utils-pack' // Now you can use a method by calling it.
// ex -
log('Yuppie...!!', 'This is Working.')
```