0.0.2 • Published 10 months ago
@isaacfg/bubble-sort-algorithm v0.0.2
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));