mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-22 03:09:27 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
// Is a given variable an object?
|
|
function isObject(obj) {
|
|
var type = typeof obj;
|
|
return type === 'function' || type === 'object' && !!obj;
|
|
}
|
|
|
|
module.exports = isObject;
|