JSPM

  • Created
  • Published
  • Downloads 50
  • Score
    100M100P100Q74629F
  • 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

NPM version Build Status Coverage Status Known Vulnerabilities Downloads

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

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

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

Installation

To install this module:

npm install extra-utilities

Building

To build the distribution files for this module:

npm run build

or

gulp build