Skip to content

compare numbers A and B and tell if A is greater, lower or equal to B by returning 1, 0, -1. Works with array.sort()

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE-MINI
Notifications You must be signed in to change notification settings

cosmosio/compare-numbers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Compare numbers

Compare numbers:

With the asc function: compare A and B, returns 1 if A is greater, -1 if lower, 0 if both are equal. Can be used with array.sort(). With the desc function: compare A and B, returns -1 if A is greater, 1 if lower, 0 if both are equal. Can be used with array.sort().

Installation

npm install compare-numbers

How to use

Require compare-numbers:

var compareNumbers = require("compare-numbers");
compareNumbers.asc(10, 1); // 1
compareNumbers.asc(1, 10); // -1
compareNumbers.asc(10, 10); // 0
compareNumbers.desc(10, 1); // -1
compareNumbers.desc(1, 10); // 1
compareNumbers.desc(10, 10); // 0

To be used with array.sort to sort arrays:

[10, 2, 30, 45, 60].sort(compareNumbers.asc); // [2, 10, 30, 45, 60];
[10, 2, 30, 45, 60].sort(compareNumbers.desc); // [60, 45, 30, 10, 2];

LICENSE

MIT

About

compare numbers A and B and tell if A is greater, lower or equal to B by returning 1, 0, -1. Works with array.sort()

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE-MINI

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published