Skip to main content
Module

x/rambda/source/sort.js

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