Home Manual Reference Source

src/sort.js

export function sort(f, array) {
	return Array.prototype.sort.call(array, f);
}