UNPKG

252 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.isObject = void 0;
7
8var isObject = function isObject(value) {
9 return Object.prototype.toString.call(value) === '[object Object]';
10};
11
12exports.isObject = isObject;
\No newline at end of file