UNPKG

semiver

Version:

A tiny (187B) utility to compare semver strings

10 lines (7 loc) 154 B
export enum Comparison { Equals = 0, Greater = 1, Lesser = -1 } declare const semiver: (a: string, b: string) => Comparison; export default semiver;