UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

11 lines (8 loc) 178 B
import { cloneList } from './_internals/cloneList.js' export function append(x) { return list => { const clone = cloneList(list) clone.push(x) return clone } }