mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-26 21:26:07 +08:00
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
define(function () {
|
|
|
|
// Is a given variable an object?
|
|
function isObject(obj) {
|
|
var type = typeof obj;
|
|
return type === 'function' || (type === 'object' && !!obj);
|
|
}
|
|
|
|
return isObject;
|
|
|
|
});
|