Skip to main content
Module

x/fluentci/deps.ts>semver.ANY

This is the command line interface for FluentCI.
Go to Latest
variable semver.ANY
Re-export
import { semver } from "https://deno.land/x/fluentci@v0.13.0/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