Export bucketSort function for Jest testing

This commit is contained in:
Charlie Moore
2021-10-04 17:57:13 -04:00
parent 55080ebffd
commit 754f7b6b04

View File

@ -62,3 +62,5 @@ console.log(arrOrignal)
const arrSorted = bucketSort(arrOrignal) const arrSorted = bucketSort(arrOrignal)
// Array after sort // Array after sort
console.log(arrSorted) console.log(arrSorted)
export { bucketSort }