From b3e6eed3cef3d82b5bb4989c0a2406698e847832 Mon Sep 17 00:00:00 2001 From: Charlie Moore Date: Mon, 4 Oct 2021 18:50:14 -0400 Subject: [PATCH] Add export to CycleSort for Jest testing --- Sorts/CycleSort.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sorts/CycleSort.js b/Sorts/CycleSort.js index 5e0f6eab5..c70737364 100644 --- a/Sorts/CycleSort.js +++ b/Sorts/CycleSort.js @@ -71,3 +71,5 @@ console.log(array) console.log('- After Sort | Implementation of Cycle Sort -') console.log(cycleSort(array)) console.log('\n') + +export { cycleSort }