Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

robust-compare

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robust-compare

Compares a pair of non-overlapping increasing sequences

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
38
decreased by-40.62%
Maintainers
1
Weekly downloads
 
Created
Source

robust-compare

Compares a pair of non-overlapping increasing sequences.

Example

var robustCompare = require("robust-compare")

console.log(robustCompare([1, 1e64]), robustCompare([-10000, -1e64]))

Install

npm install robust-compare

API

require("robust-compare")(a, b)

Given a pair of non-overlapping increasing sequences, determine if a or b is smaller/larger.

  • a and b are both non-overlapping increasing sequences

Returns A number giving the rank of a relative to b

  • < 0 if a < b
  • = 0 if a = b
  • > 0 if a > b

Credits

(c) 2014 Mikola Lysenko. MIT License

Keywords

FAQs

Package last updated on 28 Apr 2014

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc