* Check if the supplied argument is a real JavaScript Object instance. * @param object {Any} The subject to be tested. * @return {Boolean} Returns "true" if the object is a real Object instance and "false" otherwise.
(object)
| 85 | * @return {Boolean} Returns "true" if the object is a real Object instance and "false" otherwise. |
| 86 | */ |
| 87 | static isValidObject(object) { |
| 88 | return typeof object === 'object' && object !== null && object instanceof Object; |
| 89 | } |
| 90 | |
| 91 | static getPathComponents(path) { |
| 92 | return typeof path === 'string' ? path.split('.') : null; |
no outgoing calls
no test coverage detected