Skip to main content
Module

x/rambda/source/piped.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {pipe} from './pipe'
export function piped(...inputs) { const [input, ...fnList] = inputs
return pipe(...fnList)(input)}