()
| 120 | } |
| 121 | |
| 122 | export function getDiscontinuedNodeVersions(): NodeVersion[] { |
| 123 | return getOptions().filter(version => { |
| 124 | return version.state === 'discontinued'; |
| 125 | }); |
| 126 | } |
| 127 | |
| 128 | export async function getSupportedNodeVersion( |
| 129 | engineRange: string | undefined, |
no test coverage detected