StephenGrider/AlgoCasts

Missing export for Sort algorithm

Opened this issue · 0 comments

Minor issue, but it seems that it is missing an export for the merge function for the sort.js in the algorithm.

Currently it is this:
module.exports = { bubbleSort, selectionSort, mergeSort };

It should be:
module.exports = { bubbleSort, selectionSort, mergeSort, merge };