Package Exports
- ensure-type
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 (ensure-type) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ensure-type

Ensure runtime type safety and perform type coercion if needed.
Install
$ npm install --save ensure-type
Usage
import { ensureArray } from 'ensure-type';
ensureArray(null);
//=> []
ensureArray('apple');
//=> ['apple']
ensureArray(['apple', 'banana']);
//=> ['apple', 'banana']
API
Array
BigInt
Boolean
Function
Number
ensureNumber
ensureNegativeNumber
ensurePositiveNumber
ensureFiniteNumber
ensureNegativeFiniteNumber
ensurePositiveFiniteNumber
ensureInteger
ensureNegativeInteger
ensurePositiveInteger
ensureNonNegativeInteger
ensureNonPositiveInteger
Object
String
License
MIT