(currentVersion: string, expectedVersion: string)
| 21 | } |
| 22 | |
| 23 | export const compareVersions = async (currentVersion: string, expectedVersion: string): Promise<never | boolean> => { |
| 24 | // see node-semver docs: https://github.com/npm/node-semver |
| 25 | return satisfies(currentVersion, expectedVersion) |
| 26 | } |
no outgoing calls
no test coverage detected