mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-17 23:52:44 +00:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import { satisfies } from "semver";
|
|
|
|
const allowedExtensionRange = "^1.0.2";
|
|
|
|
export function isAllowedExtensionVersion(version: string): boolean {
|
|
return satisfies(version, allowedExtensionRange);
|
|
}
|