Skip to main content
Module

x/rambda/sort.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function sort(sortFn, list){ if (arguments.length === 1) return _list => sort(sortFn, _list)
const clone = list.slice()
return clone.sort(sortFn)}