From 686aef0b37cf5dacbe11bce490531847b7795e0f Mon Sep 17 00:00:00 2001 From: Stephen Grider Date: Wed, 12 Dec 2018 10:50:23 -0700 Subject: [PATCH] Update index.js --- exercises/sorting/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/sorting/index.js b/exercises/sorting/index.js index 4b38c55670..acbaf3feb0 100644 --- a/exercises/sorting/index.js +++ b/exercises/sorting/index.js @@ -17,4 +17,4 @@ function merge(left, right) { } -module.exports = { bubbleSort, selectionSort, mergeSort }; +module.exports = { bubbleSort, selectionSort, mergeSort, merge };