Sha256: 833317ff941ffc76c29861381371047f4b90a7eedef9b3ed63845ede9eb45ed6
Contents?: true
Size: 543 Bytes
Versions: 153
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
153 entries across 80 versions & 8 rubygems