mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-09 02:56:20 +08:00
chore: update dependencies
This commit is contained in:
11
node_modules/underscore/amd/isObject.js
generated
vendored
Normal file
11
node_modules/underscore/amd/isObject.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
define(function () {
|
||||
|
||||
// Is a given variable an object?
|
||||
function isObject(obj) {
|
||||
var type = typeof obj;
|
||||
return type === 'function' || (type === 'object' && !!obj);
|
||||
}
|
||||
|
||||
return isObject;
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user