MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / isUnstampedVersion

Function isUnstampedVersion

packages/core/api/src/update-check.ts:111–114  ·  view source on GitHub ↗
(version: string)

Source from the content-addressed store, hash-verified

109 * build time — so a build carrying it must never claim an update.
110 */
111export const isUnstampedVersion = (version: string): boolean => {
112 const parsed = parseVersion(version);
113 return parsed !== null && parsed.major === 0 && parsed.minor === 0 && parsed.patch === 0;
114};
115
116/**
117 * The dist-tag channel `version` can legitimately be compared against, or

Callers 2

resolveComparisonChannelFunction · 0.85

Calls 1

parseVersionFunction · 0.85

Tested by

no test coverage detected