Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

superPropBase.js 289B

123456789101112
  1. var getPrototypeOf = require("./getPrototypeOf");
  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;