Add support to v1 to connect to GHES (#69)

* Bumping actions/github to 2.2.0 for GHES

* Husky commit correct node modules
This commit is contained in:
PJ Quirk
2020-05-15 15:25:57 -04:00
committed by GitHub
parent c201d45ef4
commit 0649bd8119
7893 changed files with 2232817 additions and 49009 deletions

60
node_modules/has-values/index.js generated vendored Normal file
View File

@@ -0,0 +1,60 @@
/*!
* has-values <https://github.com/jonschlinkert/has-values>
*
* Copyright (c) 2014-2015, 2017, Jon Schlinkert.
* Released under the MIT License.
*/
'use strict';
var typeOf = require('kind-of');
var isNumber = require('is-number');
module.exports = function hasValue(val) {
// is-number checks for NaN and other edge cases
if (isNumber(val)) {
return true;
}
switch (typeOf(val)) {
case 'null':
case 'boolean':
case 'function':
return true;
case 'string':
case 'arguments':
return val.length !== 0;
case 'error':
return val.message !== '';
case 'array':
var len = val.length;
if (len === 0) {
return false;
}
for (var i = 0; i < len; i++) {
if (hasValue(val[i])) {
return true;
}
}
return false;
case 'file':
case 'map':
case 'set':
return val.size !== 0;
case 'object':
var keys = Object.keys(val);
if (keys.length === 0) {
return false;
}
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
if (hasValue(val[key])) {
return true;
}
}
return false;
default: {
return false;
}
}
};