blob: 925ea076e5c775286ab5b1ce30c892525cbaec74 [file] [log] [blame] [edit]
import { mergeRight } from './mergeRight.js'
export function mergeLeft(x, y){
if (arguments.length === 1) return _y => mergeLeft(x, _y)
return mergeRight(y, x)
}