mergeSortComparator

A function used to compare two items while performing a merge sort.
Example:
function compareNumbers(a, b, userDefinedObject) {
    return a - b;
}