2021-09-05 12:34:08 +02:00

3 lines
106 B
JavaScript

export default function _isObject(x) {
return Object.prototype.toString.call(x) === '[object Object]';
}