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

We are lazy, also lazy-cached and browserify-ready - just arrayify, falsey values returns empty array. In bonus with
.isArraymethod.
Install
npm i lazy-arrayify --saveUsage
For more use-cases see the tests
const lazyArrayify = require('lazy-arrayify').isArray
Check if value is array using the isarray module.
Params
val{Mixed}returns{Boolean}
Example
var isArray = require('lazy-arrayify').isArray
console.log(isArray(1234)) // => false
console.log(isArray('str')) // => false
console.log(isArray(null)) // => false
console.log(isArray()) // => false
console.log(isArray(0)) // => false
console.log(isArray(false)) // => false
console.log(isArray([null, 123])) // => true
console.log(isArray([null])) // => true
console.log(isArray([false])) // => true.arrayify
Returns empty array on falsey values.
Params
val{Mixed}returns{Array}
Example
var arrayify = require('lazy-arrayify').arrayify
console.log(arrayify(1234)) // => [1234]
console.log(arrayify('str')) // => ['str']
console.log(arrayify(null)) // => []
console.log(arrayify()) // => []
console.log(arrayify(0)) // => []
console.log(arrayify(false)) // => []
console.log(arrayify([null, 123])) // => [null, 123]
console.log(arrayify([false])) // => [false]Related
- arrify: Convert a value to an array | homepage
- isarray: Array#isArray for older browsers | homepage
- limon: The pluggable JavaScript lexer on per character basis. | homepage
- limon-prev-next: Plugin for limon pluggable lexer that adds
prevandnextmethods. | homepage - postjson: Transforming JSON with plugins. | homepage
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.