MCPcopy Create free account
hub / github.com/vercel/vercel / versionsEqual

Function versionsEqual

packages/python/src/version.ts:112–114  ·  view source on GitHub ↗
(a: PythonVersion, b: PythonVersion)

Source from the content-addressed store, hash-verified

110}
111
112function versionsEqual(a: PythonVersion, b: PythonVersion): boolean {
113 return a.major === b.major && a.minor === b.minor;
114}
115
116function versionLessOrEqual(a: PythonVersion, b: PythonVersion): boolean {
117 const am = a.major ?? 0;

Callers 2

getDefaultPythonVersionFunction · 0.85
getAvailablePythonBuildsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected