UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

8 lines (5 loc) 168 B
import { mergeRight } from './mergeRight.js' export function mergeLeft(x, y){ if (arguments.length === 1) return _y => mergeLeft(x, _y) return mergeRight(y, x) }