15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _getPrototypeOf;
|
|
function getPrototypeOf(o) {
|
|
getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf1(o1) {
|
|
return o1.__proto__ || Object.getPrototypeOf(o1);
|
|
};
|
|
return getPrototypeOf(o);
|
|
}
|
|
function _getPrototypeOf(o) {
|
|
return getPrototypeOf(o);
|
|
}
|