/**
* Checks if the given subject is an object or not.
*
* @paramsubject - A subject to check.
*
* @return `true` if the subject is an object, or otherwise `false`.
*/exportfunctionisObject(subject) {
return subject !== null && typeof subject === 'object';
}