JSPM

  • Created
  • Published
  • Downloads 50
  • Score
    100M100P100Q74631F
  • License ISC

A collection of useful helper functions.

Package Exports

  • extra-utilities

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extra-utilities) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Extra Utilities

A collection of useful helper functions.

Client-Side Usage

<script src="extra-utilities.js"></script>

<script type="text/javascript">
    utilities.isBoolean(false); // => true
</script>

Server-Side Usage

const utilities = require("extra-utilities");

utilities.isBoolean(false); // => true

Installation

To install this module:

npm install extra-utilities