Object.getPrototypeOf.js 279 B

12345678910
  1. if (typeof Object.getPrototypeOf !== "function") {
  2. Object.getPrototypeOf =
  3. typeof "test".__proto__ === "object"
  4. ? function (object) {
  5. return object.__proto__;
  6. }
  7. : function (object) {
  8. return object.constructor.prototype;
  9. };
  10. }