UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

6 lines 226 B
import { compare } from "semver"; import { looseCoerce } from "./loose-coerce.js"; export function looseCompare(a, b) { return compare(looseCoerce(a), looseCoerce(b) ?? "0.0.0"); } //# sourceMappingURL=loose-compare.js.map