ran npm run tester -> logged invertKeyValues test are invalid

This commit is contained in:
King
2018-01-24 06:29:38 -05:00
parent d835cf4b40
commit 737acd870d
270 changed files with 1141 additions and 872 deletions

View File

@ -0,0 +1,2 @@
const intersectionWith = (a, b, comp) => a.filter(x => b.findIndex(y => comp(x, y)) !== -1);
module.exports = intersectionWith

View File

@ -0,0 +1,13 @@
const test = require('tape');
const intersectionWith = require('./intersectionWith.js');
test('Testing intersectionWith', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof intersectionWith === 'function', 'intersectionWith is a Function');
//t.deepEqual(intersectionWith(args..), 'Expected');
//t.equal(intersectionWith(args..), 'Expected');
//t.false(intersectionWith(args..), 'Expected');
//t.throws(intersectionWith(args..), 'Expected');
t.end();
});