robust-compare

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i robust-compare

Weekly Downloads

35

Version

1.0.0

License

MIT

Last publish

Collaborators

  • mikolalysenko