mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
import type { Range } from "./types.ts";
|
|
import { parseRange } from "./parse_range.ts";
|
|
|
|
/**
|
|
* Parses the given range string and returns a Range object. If the range string
|
|
* is invalid, `undefined` is returned.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { tryParseRange } from "@std/semver";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* assertEquals(tryParseRange(">=1.2.3 <1.2.4"), [
|
|
* [
|
|
* { operator: ">=", major: 1, minor: 2, patch: 3, prerelease: [], build: [] },
|
|
* { operator: "<", major: 1, minor: 2, patch: 4, prerelease: [], build: [] },
|
|
* ],
|
|
* ]);
|
|
* ```
|
|
*
|
|
* @param value The range string
|
|
* @returns A Range object if valid otherwise `undefined`
|
|
*/
|
|
export function tryParseRange(value: string): Range | undefined {
|
|
try {
|
|
// Return '*' instead of '' so that truthiness works.
|
|
// This will throw if it's invalid anyway
|
|
return parseRange(value);
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|