fd22b0bf58
V2 (Laravel re-make)
7 lines
145 B
JavaScript
Vendored
7 lines
145 B
JavaScript
Vendored
'use strict';
|
|
|
|
module.exports = function whereInstanceOf(type) {
|
|
return this.filter(function (item) {
|
|
return item instanceof type;
|
|
});
|
|
}; |