Sha256: 5cb138975dd23c1edee76417b442a011776310ba98e7bfc0192dafa18c4687ce
Contents?: true
Size: 543 Bytes
Versions: 302
Compression:
Stored size: 543 Bytes
Contents
/** * 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;
Version data entries
302 entries across 278 versions & 33 rubygems