项目原始demo,不改动
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 

17 行
456 B

  1. var baseFor = require('./_baseFor'),
  2. keys = require('./keys');
  3. /**
  4. * The base implementation of `_.forOwn` without support for iteratee shorthands.
  5. *
  6. * @private
  7. * @param {Object} object The object to iterate over.
  8. * @param {Function} iteratee The function invoked per iteration.
  9. * @returns {Object} Returns `object`.
  10. */
  11. function baseForOwn(object, iteratee) {
  12. return object && baseFor(object, iteratee, keys);
  13. }
  14. module.exports = baseForOwn;