import { Checker } from "https://deno.land/x/embassyd_sdk@v0.3.4.3.0-alpha1/lib/esm/emver-lite/mod.js";
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
Static Methods
parse(range)
Will take in a range, like >1.2
or <1.2.3.4
or =1.2
or 1.*
and return a checker, that has the check function for checking that a version is in the valid