* Checks if value is an object. * @param value The value to check. * @returns
(value: any)
| 64 | * @returns |
| 65 | */ |
| 66 | isObject(value: any): boolean { |
| 67 | return value && typeof value === "object" && value.constructor && value.constructor.name === "Object"; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Checks if a value is null |
no outgoing calls
no test coverage detected