UNPKG

279 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = supportsProtoAssignment;
7const x = {};
8const y = { supports: true };
9try {
10 x.__proto__ = y;
11} catch (err) {}
12
13function supportsProtoAssignment() {
14 return x.supports || false;
15};
\No newline at end of file