Sorts an array of numbers using bubble sort
npm install b-sortSorts an array of numbers using bubble sort.
Installation
------------
``bash`
npm install --save b-sort
Usage
-------
`js
var sort = require('b-sort');
sort([1,2,3,1,2,3]) // [ 1, 1, 2, 2, 3, 3 ]
sort([6,5,3,2,1,0]) // [ 0, 1, 2, 3, 5, 6 ]
``