UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

8 lines (5 loc) 138 B
import { pipe } from './pipe' export function piped(...inputs){ const [ input, ...fnList ] = inputs return pipe(...fnList)(input) }