mirror of
https://github.com/actions/setup-python.git
synced 2025-07-19 08:18:21 +02:00
Clean up node_modules
This commit is contained in:
parent
b581dd4017
commit
145e800d1f
7184 changed files with 11271 additions and 1877650 deletions
21
node_modules/lodash/_baseSortBy.js
generated
vendored
21
node_modules/lodash/_baseSortBy.js
generated
vendored
|
@ -1,21 +0,0 @@
|
|||
/**
|
||||
* 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;
|
Loading…
Add table
Add a link
Reference in a new issue