Socket
Socket
Sign inDemoInstall

comparisons

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

comparisons

yarn add comparisons ```


Version published
Maintainers
1
Created
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

Package last updated on 04 May 2020

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