Files
rspade_system/node_modules/collect.js/dist/methods/whereInstanceOf.js
2025-12-03 21:28:08 +00:00

7 lines
145 B
JavaScript
Executable File

'use strict';
module.exports = function whereInstanceOf(type) {
return this.filter(function (item) {
return item instanceof type;
});
};