Files
30-seconds-of-code/test/xProd/xProd.js
Angelos Chalaris 449dfdea1c Added some tests
Also fixed xProd. Tests for xProd, unzipWith, unzip and is.
2018-01-24 17:17:51 +02:00

2 lines
102 B
JavaScript

const xProd = (a, b) => a.reduce((acc,x) => acc.concat(b.map(y => [x, y])),[]);
module.exports = xProd