New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
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

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
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

robust

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