1.0.1 • Published 7 years ago

best-async-array-sort v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

best-async-array-sort

This is the best array sorting module you will find out there. Seriously.

Usage

Here's the simplest example:

import sortArray from 'best-async-array-sort'

let messyArray = [1000, 5, 100, 534, 46]
  , sortedArray = []

(async function () {
  sortedArray = await sortArray(messyArray)
  console.log(sortedArray) // [5, 46, 100, 534, 1000] - done in a little more than a second!!!
})()

Warning

This does not support string values. At all, don't even think about it.

1.0.1

7 years ago

1.0.0

7 years ago