blob: 10469eef4ea87f80141ec3109c473ef8be255ccb [file] [log] [blame] [edit]
'use strict';
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};