You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
556 B
25 lines
556 B
'use strict';
|
|
|
|
const variadic = require('../helpers/variadic');
|
|
|
|
module.exports = function except(...args) {
|
|
const properties = variadic(args);
|
|
|
|
if (Array.isArray(this.items)) {
|
|
const collection = this.items
|
|
.filter(item => properties.indexOf(item) === -1);
|
|
|
|
return new this.constructor(collection);
|
|
}
|
|
|
|
const collection = {};
|
|
|
|
Object.keys(this.items).forEach((property) => {
|
|
if (properties.indexOf(property) === -1) {
|
|
collection[property] = this.items[property];
|
|
}
|
|
});
|
|
|
|
return new this.constructor(collection);
|
|
};
|