Urara-Blog/node_modules/.pnpm-store/v3/files/88/7f5d539dd9396425f126a16f1530e80a081f6b5625a83c0416c5d5f92809824886526b7364788fd42262a942dcf0468f44960d878e8171555b78aa668a176a
2022-08-14 01:14:53 +08:00

14 lines
No EOL
477 B
Text

function _isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
if (Reflect.construct.sham) return false;
if (typeof Proxy === "function") return true;
try {
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
return true;
} catch (e) {
return false;
}
}
module.exports = _isNativeReflectConstruct, module.exports.__esModule = true, module.exports["default"] = module.exports;