Determine if input is a non-null object and not an array.
input
isObject({}); // trueisObject([]); // false Copy
isObject({}); // trueisObject([]); // false
Determine if
inputis a non-null object and not an array.