We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45316a2 commit 723ee61Copy full SHA for 723ee61
tap/env.ts
@@ -47,7 +47,7 @@ export const isGecko = isBrowser && (await isEngine('Gecko'))
47
48
function isNodeVersionAtLeast(major: number, minor: number) {
49
const parts = process.versions.node.split('.').map((i) => parseInt(i, 10))
50
- return parts[0] >= major || (parts[0] === major && parts[1] > minor)
+ return parts[0] > major || (parts[0] === major && parts[1] >= minor)
51
}
52
53
export function supported(identifier?: string, op?: string) {
0 commit comments