@isaacfg/bubble-sort-algorithm
v0.0.2
Published
A very simple Bubble Sort library.
Downloads
11
Readme
A very simple Bubble Sort library. Example:
var bubbleSort = require("@isaacfg/bubble-sort-algorithm");
/* Print's: 1, 2, 3 */
console.log(bubbleSort.bubbleSort([3, 2, 1], true));
/* Print's: 3, 2, 1 */
console.log(bubbleSort.bubbleSort([1, 2, 3], false));