Check if this
is truthy.
$ npm install this-is-truthy
import isTruthy from 'this-is-truthy/module';
// or:
const isTruthy = require('this-is-truthy');
These are all true
:
true::isTruthy();
5::isTruthy();
'a'::isTruthy();
[]::isTruthy();
{}::isTruthy();
() => {}::isTruthy();
These are false
:
false::isTruthy();
null::isTruthy();
undefined::isTruthy();
0::isTruthy();
NaN::isTruthy();
''::isTruthy();
It works great with trine:
const {take} = require('trine/iterable/take');
[1, 3, , 5, 0, 7]::take(isTruthy);
// yields [1, 3, 5, 7]