operator-compare

[ABANDONED] Comparing two variables with operator as argument

Usage no npm install needed!

<script type="module">
  import operatorCompare from 'https://cdn.skypack.dev/operator-compare';
</script>

README

operator-compare

NPM version Dependency Status Build Status

Donate

Abandoned

Unfortunately I don't have any more time to maintain this repository :-(

sad cat

Comparing two variables with operator as argument.

Usage

var compare = require('compare');

compare(5, '<', 10);			// result: true

As you can see, this is just simple function, which compare two variables by operator as second argument. List of available operators is bellow.

Operators

There are just classic operators with some others.

   Operator   |   Equivalent
--------------+----------------
      >       |          >
      >=      |          >=
      <       |          <
      <=      |          <=
     =, ==    |         ===
   !, !=, <>  |         !==

Last two lines are sets of operators, so operator <> is the same one as !=.

If you will try to set some unknown operator, exception will be thrown.

Changelog

  • 1.0.3

    • Abandon project
  • 1.0.2

    • Move under Carrooi organization
    • Abandon repository
    • Rewrite to pure javascript
    • Fix typos
    • Add to travis
    • Update dependencies
  • 1.0.1

    • Typo in readme
  • 1.0.0

    • Initial commit