mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-22 05:54:45 +00:00
.
This commit is contained in:
parent
fc725ba36b
commit
422b9fdb15
7395 changed files with 1786235 additions and 3476 deletions
16
node_modules/has-value/index.js
generated
vendored
Normal file
16
node_modules/has-value/index.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*!
|
||||
* has-value <https://github.com/jonschlinkert/has-value>
|
||||
*
|
||||
* Copyright (c) 2014-2017, Jon Schlinkert.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var isObject = require('isobject');
|
||||
var hasValues = require('has-values');
|
||||
var get = require('get-value');
|
||||
|
||||
module.exports = function(val, prop) {
|
||||
return hasValues(isObject(val) && prop ? get(val, prop) : val);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue