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
var utilities = require("extra-utilities");
utilities.isBoolean(false); // => trueInstallation
To install this module:
npm install extra-utilitiesBuilding
To build the distribution files for this module:
npm run buildor
gulp build