* Is the specified argument a regular javascript object? * * The argument is an object if it's a JS object, but not an array. * * @method isObject * @param {unknown} obj An argument of any type. * @return {obj is object} TRUE if the arg is an object, FALSE if not
(obj)
| 777 | * @return {obj is object} TRUE if the arg is an object, FALSE if not |
| 778 | */ |
| 779 | static isObject(obj) { |
| 780 | return (obj !== null) && (typeof obj === 'object') && !(Array.isArray(obj)); |
| 781 | } |
| 782 | |
| 783 | /** |
| 784 | * Is the specified argument a javascript promise? |
no outgoing calls
no test coverage detected