Add tests for byteSize

Uses a workaround and a custom Blob implementation, but it should work just fine.
This commit is contained in:
Angelos Chalaris
2018-02-07 16:36:31 +02:00
parent 2b2e88738c
commit a7970d8a2c
3 changed files with 21 additions and 7 deletions

View File

@ -1,3 +1,2 @@
const converge = (converger, fns) => (...args) =>
converger(...fns.map(fn => fn.apply(null, args)));
const converge = (converger, fns) => (...args) => converger(...fns.map(fn => fn.apply(null, args)));
module.exports = converge;