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

intersect.js 335B

123456789101112131415
  1. 'use strict';
  2. module.exports = function intersect(values) {
  3. var intersectValues = values;
  4. if (values instanceof this.constructor) {
  5. intersectValues = values.all();
  6. }
  7. var collection = this.items.filter(function (item) {
  8. return intersectValues.indexOf(item) !== -1;
  9. });
  10. return new this.constructor(collection);
  11. };