"use strict"; module.exports = function filterType(type, allNodes) { return allNodes.filter((node) => node.type === type); };