Skip to main content
Module

x/rambda/source/piped.js

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