import * as embassydSdk from "https://deno.land/x/embassyd_sdk@v0.3.4.3.0-alpha1/lib/esm/emver-lite/mod.js";
Classes
A checker is a function that takes a version and returns true if the version matches the checker. Used when we are doing range checking, like saying ">=1.0.0".check("1.2.3") will be true | |
EmVer is a set of versioning of any pattern like 1 or 1.2 or 1.2.3 or 1.2.3.4 or .. |
Functions
This will negate the checker, so given a checker that checks for >= 1.0.0, it will check for < 1.0.0 | |
Used to create a checker that will | |
Will take in a range, like | |
Used to create a checker that will |