buffer-compare-numeric

1.0.1 • Public • Published

buffer-compare-numeric

Compare (Big Endian) Buffers numerically

Install

npm install buffer-compare-numeric

Usage

Will compare (Big Endian) Buffers numerically, ignoring leading zeros.

var cmp = require('buffer-compare-numeric')
 
var a = Buffer([16])
var b = Buffer([00, 17])
 
[a, b].sort(Buffer.compare) // [b, a]
[a, b].sort(cmp) // [a, b]
 

License

ISC

Package Sidebar

Install

npm i buffer-compare-numeric

Weekly Downloads

1

Version

1.0.1

License

ISC

Last publish

Collaborators

  • emilbayes
  • emilbay