# is-semver-static

> Check if a version is a semver range or a static version

Latest version **1.0.1** (published 2022-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-semver-static
pnpm add is-semver-static
yarn add is-semver-static
bun add is-semver-static
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2022-04-15 |
| First published | 2017-08-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Martin Kolárik |
| Maintainers | martin-kolarik |
| Keywords | semver, version, static, range |

## Links

- npm: https://www.npmjs.com/package/is-semver-static
- Repository: https://github.com/MartinKolarik/is-semver-static
- Homepage: https://github.com/MartinKolarik/is-semver-static/
- Issues: https://github.com/MartinKolarik/is-semver-static/issues/
- npm.io page: https://npm.io/package/is-semver-static

## Recent versions

- 1.0.1 (latest) — 2022-04-15
- 1.0.0 — 2017-08-20

## README

# is-semver-static

Check if a version is a semver range or a static version

## Installation

```
$ npm install is-semver-static
```
or

```
<script src="https://cdn.jsdelivr.net/npm/is-semver-static@1.0.0"></script>
```

## Usage

```js
const isSemverStatic = require('is-semver-static'); // or window.isSemverStatic

isSemverStatic('1.0.0'); // true
isSemverStatic('=1.0.0'); // true
isSemverStatic('v1.0.0'); // true
isSemverStatic('1.0.0-rc1'); // true
isSemverStatic('>1.0.0'); // false
isSemverStatic('^1.0.0'); // false
isSemverStatic('~1.0.0'); // false
isSemverStatic('1'); // false
```

## License
Copyright (c) 2017 Martin Kolárik. Released under the MIT license.

---
_Source: https://npm.io/package/is-semver-static · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
