sort-bubble
v1.1.0
Published
A simple and fast implementation of bubble sort
Downloads
1
Readme
sort-bubble
Bubble sort for arrays.
Returns a sorted array, original array stays untouched.
example
import sort from 'sort-bubble'
sort([6, 2, 5, 3], function (a, b) {
return a > b
}) // returns [2, 3, 5, 6]
sort(['hello', 'how', 'are', 'you', '?'], function (a, b) {
return a.length > b.length
}) // returns ['?', 'how', 'are', 'you', 'hello']