groupBy不是来自npm的lodash源码

时间:2016-03-08 10:27:27

标签: lodash

我刚刚通过npm安装了lodash:

npm install --save lodash

groupBy不在源头,我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

我不确定你看到了什么,但是,不,它肯定在那里。 Here it is from github:

var groupBy = createAggregator(function(result, value, key) {
  if (hasOwnProperty.call(result, key)) {
    result[key].push(value);
  } else {
    result[key] = [value];
  }
});