@returns {JSONFileItem}
()
| 74 | |
| 75 | /** @returns {JSONFileItem} */ |
| 76 | getAllPackageJSONFileItems() { |
| 77 | return this.plugins.reduce((items, plugin) => { |
| 78 | items.push(...plugin.packageJSONFile.fileItems); |
| 79 | return items; |
| 80 | }, []); |
| 81 | } |
| 82 | |
| 83 | } |
| 84 |
no outgoing calls
no test coverage detected