diff --git a/lib/sorts/selection-sort/index.js b/lib/sorts/selection-sort/index.js index 43b91f8..0f321d9 100644 --- a/lib/sorts/selection-sort/index.js +++ b/lib/sorts/selection-sort/index.js @@ -1,3 +1,4 @@ + module.exports = function selectionSort(array) { let minIndex; let temp; diff --git a/lib/sorts/selection-sort/selection-sort.test.js b/lib/sorts/selection-sort/selection-sort.test.js index beda2eb..7293399 100644 --- a/lib/sorts/selection-sort/selection-sort.test.js +++ b/lib/sorts/selection-sort/selection-sort.test.js @@ -1,4 +1,3 @@ - const should = require('should'); const algo = require('../../index.js');