Add export of combSort for Jest testing

This commit is contained in:
Charlie Moore
2021-10-04 18:42:49 -04:00
parent 4ebe59345b
commit ea4e816b5e

View File

@ -60,3 +60,5 @@ console.log(array)
console.log('- After Sort | Implementation of Comb Sort -')
console.log(combSort(array))
console.log('\n')
export { combSort }