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 674d4f94f0
commit 5d6e1f9abe
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;