芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/collect.js/dist/methods/diff.js
'use strict'; module.exports = function diff(values) { var valuesToDiff; if (values instanceof this.constructor) { valuesToDiff = values.all(); } else { valuesToDiff = values; } var collection = this.items.filter(function (item) { return valuesToDiff.indexOf(item) === -1; }); return new this.constructor(collection); };