angular.isObject
ng
Determines if a reference is an Object. Unlike typeof in JavaScript, nulls are not considered to be objects.
Object
typeof
null
angular.isObject(value);
Reference to check.
True if value is an Object but not null.
value