Socket
Socket
Sign inDemoInstall

semver-stable

Package Overview
Dependencies
1
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    semver-stable

semver-stable


Version published
Weekly downloads
112K
increased by5.53%
Maintainers
1
Install size
72.7 kB
Created
Weekly downloads
 

Readme

Source

NPM version Build Status Dependency Status

semver-stable

Manage stable semver versions

Install

$ npm install semver-stable --save

Usage

var stable = require('semver-stable');

stable.is(version)

stable.is('1.2.3');        // -> true
stable.is('1.2.3-stable'); // -> false
stable.is('1.2.3-alpha');  // -> false

Returns Boolean whether the version is stable.

stable.maxSatisfying(versions, range)

  • versions Array.<semver>
  • range String semver range
stable.maxSatisfying([
  '1.3.3',      // not match the range
  '1.2.3-beta', // not a stable version
  '1.2.2',      // that's it
  '1.2.1',      // much older
  '1.1.2'
], '~1.2.0');
// -> 1.2.2

Returns String the latest stable version matches the range.

stable.max(versions);

Returns String the max stable version.

License

MIT

Keywords

FAQs

Last updated on 16 Aug 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc