Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
comparejs implements JavaScript's comparison operators the way you would expect them to be.
comparejs implements JavaScript's comparison operators the way you would expect them to be.
Category | Status |
---|---|
Version | |
Dependencies | |
Dev dependencies | |
Build | |
License |
$ npm install comparejs
To use comparejs you need to reference it from your application by adding the following line:
const { compare } = require('comparejs');
If you use TypeScript, use the following code instead:
import { compare } from 'comparejs';
array
, boolean
, function
, null
, number
, object
, string
and undefined
.number
and new Number()
.<
, <=
, >
and >=
by handling them as subsets.undefined
correctly, as <=
and >=
are problematic in plain JavaScript.Now you are able to use the various comparison operators. All you need to do is access the compare
object and use its functions:
Operator | Alias | Description |
---|---|---|
equal(left, right) | eq(left, right) | equal |
notEqual(left, right) | ne(left, right) | not equal |
lessThan(left, right) | lt(left, right) | less than |
lessThanOrEqual(left, right) | lte(left, right) | less than or equal |
greaterThan(left, right) | gt(left, right) | greater than |
greaterThanOrEqual(left, right) | gte(left, right) | greater than or equal |
identity(left, right) | id(left, right) | identity |
Please note that each comparison operator works on each combination of types and does what you would expect it to do.
For objects, there are special operators that compare by structure. Among other things, they can be used to verify objects against interfaces:
Operator | Alias | Description |
---|---|---|
equalByStructure(left, right) | eqs(left, right) | equal by structure |
notEqualByStructure(left, right) | nes(left, right) | not equal by structure |
lessThanByStructure(left, right) | lts(left, right) | less than by structure |
lessThanOrEqualByStructure(left, right) | ltes(left, right) | less than or equal by structure |
greaterThanByStructure(left, right) | gts(left, right) | greater than by structure |
greaterThanOrEqualByStructure(left, right) | gtes(left, right) | greater than or equal by structure |
Please note that these operators only work for objects. For any other type, they return false
.
To run quality assurance for this module use roboter:
$ npx roboter
FAQs
comparejs implements JavaScript's comparison operators the way you would expect them to be.
We found that comparejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.