Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Implementing the comparison operators eq, ne, gt, ge, lt and le in JavaScript for use with Node.js and the browser.
comparejs implements JavaScript's comparison operators for Node.js and the browser the way you would expect them to be.
If you have any questions or feedback, feel free to contact me using @goloroden on Twitter.
Basically, using comparejs in Node.js is easy. All you need to do is install it using npm
by running the
following command:
$ npm install comparejs
Then, you can reference it from your application by adding the following line:
var cmp = require('comparejs');
Using comparejs in the browser is easy, too. All you need to do here is add a script reference within your web site. If you want to use the latest version hosted on GitHub, use:
<script type="text/javascript" src="https://raw.github.com/goloroden/comparejs/master/bin/compare.min.js"></script>
If instead you want to use a specific version hosted on GitHub, use:
<script type="text/javascript" src="https://raw.github.com/goloroden/comparejs/master/bin/compare-[x.y.z].min.js"></script>
Of course you can also download any version manually and add a local reference.
If you are running Visual Studio, instead of downloading manually you can also install comparejs by using the NuGet package. For that run the following command inside the NuGet console:
PM> Install-Package compare.js
Note: The NuGet package was created by Alexander Zeitler. Thanks for that :-)!
number
, string
, boolean
, function
, object
, array
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 cmp
object and
use its functions:
Operator | Alias | Description |
---|---|---|
cmp.eq(first, second) | cmp.equal(first, second) | equal |
cmp.ne(first, second) | cmp.notEqual(first, second) | not equal |
cmp.gt(first, second) | cmp.greaterThan(first, second) | greater than |
cmp.ge(first, second) | cmp.greaterThanOrEqual(first, second) | greater than or equal |
cmp.lt(first, second) | cmp.lessThan(first, second) | less than |
cmp.le(first, second) | cmp.lessThanOrEqual(first, second) | less than or equal |
cmp.id(first, second) | cmp.identical(first, second) | identical |
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 |
---|---|---|
cmp.eqs(first, second) | cmp.equalByStructure(first, second) | equal by structure |
cmp.nes(first, second) | cmp.notEqualByStructure(first, second) | not equal by structure |
cmp.gts(first, second) | cmp.greaterThanByStructure(first, second) | greater than by structure |
cmp.ges(first, second) | cmp.greaterThanOrEqualByStructure(first, second) | greater than or equal by structure |
cmp.lts(first, second) | cmp.lessThanByStructure(first, second) | less than by structure |
cmp.les(first, second) | cmp.lessThanOrEqualByStructure(first, second) | less than or equal by structure |
Please note that these operators only work for objects. For any other type, they return false
.
comparejs has been developed using TDD. To run the tests, go to the folder where you have installed comparejs to and run npm test
. You need to have mocha installed.
$ npm test
That's it :-)!
The MIT License (MIT) Copyright (c) 2012 Golo Roden.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
comparejs implements JavaScript's comparison operators the way you would expect them to be.
The npm package comparejs receives a total of 21,631 weekly downloads. As such, comparejs popularity was classified as popular.
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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.