Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 271 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 271 Bytes

Semver

This library provides parsing and comparison capability for Semantic Versioning strings.

Parsing

Semver.parse("1.2.3") // => Right(Semver(1, 2, 3))

Comparison

Semver(2, 2, 3) > Semver(1, 2, 3) // => true