Socket
Socket
Sign inDemoInstall

semver-greatest-satisfied-range

Package Overview
Dependencies
2
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    semver-greatest-satisfied-range

Find the greatest satisfied semver range from an array of ranges.


Version published
Weekly downloads
1.3M
decreased by-3.63%
Maintainers
2
Install size
96.9 kB
Created
Weekly downloads
 

Changelog

Source

2.0.0 (2022-01-31)

⚠ BREAKING CHANGES

  • Add test demonstrating behavior for newer prerelease version than stable range
  • Normalize repository, dropping node <10.13 support (#11)

Features

  • Switch to upstream sver dependency instead of sver-compat (4856298)

Miscellaneous Chores

  • Add test demonstrating behavior for newer prerelease version than stable range (4856298)
  • Normalize repository, dropping node <10.13 support (#11) (4856298)

Readme

Source

semver-greatest-satisfied-range

NPM version Downloads Build Status Coveralls Status

Find the greatest satisfied semver range from an array of ranges.

Usage

var findRange = require('semver-greatest-satisfied-range');

var range = findRange('1.1.0', ['^1.0.0', '^1.1.0', '^1.2.0']);
// range === '^1.1.0'

API

findRange(version, rangeArray)

Takes a version and array of ranges, returns the greatest satisfied range. Range support is defined by sver.

License

MIT

Keywords

FAQs

Last updated on 31 Jan 2022

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