web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
370 B

  1. var getPrototypeOf = require("./getPrototypeOf.js");
  2. function _superPropBase(object, property) {
  3. while (!Object.prototype.hasOwnProperty.call(object, property)) {
  4. object = getPrototypeOf(object);
  5. if (object === null) break;
  6. }
  7. return object;
  8. }
  9. module.exports = _superPropBase;
  10. module.exports["default"] = module.exports, module.exports.__esModule = true;