Add export to CycleSort for Jest testing

This commit is contained in:
Charlie Moore
2021-10-04 18:50:14 -04:00
parent 720b7b054b
commit b3e6eed3ce

View File

@ -71,3 +71,5 @@ console.log(array)
console.log('- After Sort | Implementation of Cycle Sort -')
console.log(cycleSort(array))
console.log('\n')
export { cycleSort }