1.0.1 • Published 10 years ago
existy v1.0.1
existy
Check if something exists (e.g. not null || undefined)
A modularized version of the existy function found in Functional Javascript by Michael Fogus.
Install
$ npm i existy --saveUsage
var existy = require('existy')
existy(null) // false
existy(undefined) // false
existy(0) // true
existy(false) // trueContributing
Contributions welcome! Please read the contributing guidelines first.
Related
References
- Functional Javascript by Michael Fogus
- "this is my best module" - substack