mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-06 12:21:11 +00:00
.
This commit is contained in:
parent
a004f0ae58
commit
fc725ba36b
7280 changed files with 19 additions and 1796407 deletions
node_modules/lodash
24
node_modules/lodash/_getMatchData.js
generated
vendored
24
node_modules/lodash/_getMatchData.js
generated
vendored
|
@ -1,24 +0,0 @@
|
|||
var isStrictComparable = require('./_isStrictComparable'),
|
||||
keys = require('./keys');
|
||||
|
||||
/**
|
||||
* Gets the property names, values, and compare flags of `object`.
|
||||
*
|
||||
* @private
|
||||
* @param {Object} object The object to query.
|
||||
* @returns {Array} Returns the match data of `object`.
|
||||
*/
|
||||
function getMatchData(object) {
|
||||
var result = keys(object),
|
||||
length = result.length;
|
||||
|
||||
while (length--) {
|
||||
var key = result[length],
|
||||
value = object[key];
|
||||
|
||||
result[length] = [key, value, isStrictComparable(value)];
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports = getMatchData;
|
Loading…
Add table
Add a link
Reference in a new issue