mirror of https://github.com/jkjoy/sunpeiwen.git
7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.isObject = void 0;
|
||
|
exports.isObject = obj => {
|
||
|
return Object.prototype.toString.call(obj) === '[object Object]';
|
||
|
};
|