blob: cdcf6018cbf72189c0958de84e6bbbd29fa402aa (
plain)
1
2
3
4
5
6
7
8
9
10
|
'use strict';
module.exports = function (input, exclude) {
if (!Array.isArray(input)) {
return [];
}
return input.filter(function (x) {
return exclude.indexOf(x) === -1;
});
};
|