Skip to main content
Module

x/rambda/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)}