Socket
Socket
Sign inDemoInstall

comparisons

Package Overview
Dependencies
3
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    comparisons

yarn add comparisons ```


Version published
Weekly downloads
33
increased by37.5%
Maintainers
1
Install size
4.22 MB
Created
Weekly downloads
 

Readme

Source

🧮 Comparisons

Status Coverage Status

Currently, expressions support =, >=, <=, >, < and != operators. Optionally, you can include a second constructor argument for changing the locale (the default is "en"). Any expressions that do not match a recognized operation get stripped out and are assumed to pass.

For simply matching if a property exists, use the =* expression. Likewise, use the ! flag on the key name to check for missing/empty values.

Don't worry about type casting—we'll handle that for you.

Example usage

  # Or use npm install
  yarn add comparisons
const Comparison = require('comparisons');

const tests = ['foo=bar', 'num>=2', '!quuz'];
const stub = { foo: 'bar', num: 3 };
const runner =  new  Comparison(tests);
runner.eval(stub); // returns true or false
runner.query(); // returns a Mongo friendly query

FAQs

Last updated on 04 Mar 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc