Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/fresh/src/dev/deps.ts>semver.ANY

The next-gen web framework.
Extremely Popular
Go to Latest
variable semver.ANY
Re-export
import { semver } from "https://deno.land/x/fresh@1.4.3/src/dev/deps.ts";
const { ANY } = semver;

ANY is a sentinel value used by some range calculations. It is not a valid SemVer object and should not be used directly.

Examples

Example 1

import { eq } from "https://deno.land/std@0.224.0/semver/eq.ts";
import { parse } from "https://deno.land/std@0.224.0/semver/parse.ts";
import { ANY } from "https://deno.land/std@0.224.0/semver/constants.ts"
eq(parse("1.2.3"), ANY); // false