@jsonjoy.com/util
Version:
Various helper utilities
26 lines (25 loc) • 695 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sort = void 0;
/**
* Insertion sort, should be faster than built-int sort for small arrays.
*
* @todo Move this to `thingies` package.
*
* @param arr Array to sort.
* @returns Returns the same array instance.
*/
const sort = (arr) => {
const length = arr.length;
for (let i = 1; i < length; i++) {
const currentValue = arr[i];
let position = i;
while (position !== 0 && arr[position - 1] > currentValue) {
arr[position] = arr[position - 1];
position--;
}
arr[position] = currentValue;
}
return arr;
};
exports.sort = sort;