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-typeUsage
import { ensureArray } from 'ensure-type';
ensureArray(null);
//=> []
ensureArray('apple');
//=> ['apple']
ensureArray(['apple', 'banana']);
//=> ['apple', 'banana']API
Array
BigInt
Boolean
Function
Number
ensureNumberensureNegativeNumberensurePositiveNumberensureFiniteNumberensureNegativeFiniteNumberensurePositiveFiniteNumberensureIntegerensureNegativeIntegerensurePositiveIntegerensureNonNegativeIntegerensureNonPositiveInteger
Object
String
License
MIT
