@antv/util
Version:
> AntV 底层依赖的工具库,不建议在自己业务中使用。
10 lines • 374 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var objectProto = Object.prototype;
var isPrototype = function (value) {
var Ctor = value && value.constructor;
var proto = (typeof Ctor === 'function' && Ctor.prototype) || objectProto;
return value === proto;
};
exports.default = isPrototype;
//# sourceMappingURL=is-prototype.js.map
;