Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

comparejs

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

comparejs

comparejs implements JavaScript's comparison operators the way you would expect them to be.

  • 0.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26K
decreased by-2.8%
Maintainers
1
Weekly downloads
 
Created
Source

comparejs

comparejs implements JavaScript's comparison operators the way you would expect them to be.

Installation

$ npm install comparejs

Quick Start

To use comparejs you need to reference it from your application by adding the following line:

var cmp = require('comparejs');

Features

  • Supports comparison of number, string, boolean, function, object, array and undefined.
  • Supports comparison of native data types and constructor-created data types, such as number and new Number().
  • Supports comparison of objects and arrays using deep-equal.
  • Supports comparison of objects and arrays with <, <=, > and >= by handling them as subsets.
  • Supports comparison of objects by structure.
  • Supports comparison with undefined correctly, as <= and >= are problematic in plain JavaScript.
  • Supports comparison in a perfectly type-safe way out-of-the-box.
  • Supports comparison by equality and identity, depending on what makes sense.
  • Developed using TDD and backed up by more than 930 unit tests.

Basic usage

Now you are able to use the various comparison operators. All you need to do is access the cmp object and use its functions:

OperatorAliasDescription
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.

Structure comparison operators

For objects, there are special operators that compare by structure. Among other things, they can be used to verify objects against interfaces:

OperatorAliasDescription
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.

Running the build

This module can be built using Grunt. Besides running the tests, this also analyses the code. To run Grunt, go to the folder where you have installed comparejs and run grunt. You need to have grunt-cli installed.

$ grunt

License

The MIT License (MIT) Copyright (c) 2012-2014 the native web.

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

Package last updated on 10 Dec 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc