js-utils-pack

A collection of js utility.

Usage no npm install needed!

<script type="module">
  import jsUtilsPack from 'https://cdn.skypack.dev/js-utils-pack';
</script>

README

JS-utils-pack

A collection of utilities we used in daily life while making a web app.


Build MIT license npm version Repo size Install Size Min zip Downloads

How to use

Documentation

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.')