about summary refs log tree commit diff stats
path: root/js/pipe.js
blob: 69ccae32400652d99c221a18013736e46ffb6d5a (plain) (blame)
1
2
const pipe = (...args) => args.reduce((acc, el) => el(acc));