1
0
mirror of https://gitea.com/actions/setup-python.git synced 2025-02-24 04:30:36 +07:00
setup-python/node_modules/lodash/_baseSortBy.js
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

22 lines
543 B
JavaScript

/**
* The base implementation of `_.sortBy` which uses `comparer` to define the
* sort order of `array` and replaces criteria objects with their corresponding
* values.
*
* @private
* @param {Array} array The array to sort.
* @param {Function} comparer The function to define sort order.
* @returns {Array} Returns `array`.
*/
function baseSortBy(array, comparer) {
var length = array.length;
array.sort(comparer);
while (length--) {
array[length] = array[length].value;
}
return array;
}
module.exports = baseSortBy;