Skip to main content
Module

x/rambda/source/sort.js

Faster and smaller alternative to Ramda
Latest
File
import { cloneList } from './_internals/cloneList.js'
export function sort(sortFn, list){ if (arguments.length === 1) return _list => sort(sortFn, _list)
return cloneList(list).sort(sortFn)}