Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 319 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 319 Bytes

heap-sort

Stability: 1 - Experimental

Heap sort.

Usage

var heapSort = require('heap-sort');
...
var ascending  = heapSort(array);        // sort ascending
var descending = heapSort(array, false); // sort descending