blob: e033557d9599165fafc4cc89de897c02724cadc5 (
plain)
1
2
3
4
5
6
7
8
9
|
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (val) {
return Object.prototype.toString.call(val) === '[object Object]' ? true : false;
};
|