1.0.3 • Published 10 years ago
existential v1.0.3
Existential
The missing existential operator for JavaScript. Returns true unless a variable is
nullorundefined.
Install
npm install existentialIf you want to use in the browser (powered by Browserify):
bower install existential --saveand later link in your HTML:
<script src="bower_components/existential/dist/existential.js"></script>Usage
var exists = require('existential');
console.log(exists(null));
// => false
console.log(exists('hello world'));
// => trueLicense
MIT © Kiko Beats