semver_basic
v1.0.0
Published
A basic library to check semver strings.
Downloads
8
Readme
A simple way to check version number strings.
const isAGtrThanB = require('semver_basic').isAGtrThanB;
let result = isAGtrThanB('2.0.1', '2.0.0'); // true
More: ./test/*