nikcorg/funcalicious

View on GitHub
src/tee.js

Summary

Maintainability
A
0 mins
Test Coverage
export const tee = (...pipeline) => o => (pipeline.forEach(fn => fn(o)), o);