Updated all, any, none
Merged them with their by counterparts.
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
const none = arr => !arr.some(Boolean);
|
||||
const none = (arr, fn = Boolean) => !arr.some(fn);
|
||||
module.exports = none;
|
||||
@ -7,6 +7,8 @@ test('Testing none', (t) => {
|
||||
t.true(typeof none === 'function', 'none is a Function');
|
||||
t.true(none([0,undefined,NaN,null,'']), 'Returns true for arrays with no truthy values');
|
||||
t.false(none([0,1]), 'Returns false for arrays with at least one truthy value');
|
||||
t.true(none([4,1,0,3], x => x < 0), 'Returns true with a predicate function');
|
||||
t.false(none([0,1,2], x => x === 1), 'Returns false with predicate function');
|
||||
//t.deepEqual(none(args..), 'Expected');
|
||||
//t.equal(none(args..), 'Expected');
|
||||
//t.false(none(args..), 'Expected');
|
||||
|
||||
Reference in New Issue
Block a user