vluzrmos/math-interval-js

A simple math interval matcher for javascript.

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 3

Forks: 1

Open Issues: 0

Language:JavaScript

Type:package

v0.0.7 2015-07-11 08:08 UTC

This package is auto-updated.

Last update: 2024-04-13 05:16:30 UTC


README

Join the chat at https://gitter.im/vluzrmos/interval-js

npm version Build Status

Check if a given number match with a math interval.

Install

You just download the source zip.

Or if you want:

NPM:

npm install math-interval-js.

Bower:

bower install math-interval-js.

Composer:

composer require vluzrmos/math-interval-js.

Usage

Simple:

Interval.test(1, "[1,2]");
// true

Interval.test(3, "[1,2]");
// false

Set of numbers:

Interval.test(2, "{1,3,5,7}");
// false

Interval.test(3, "{1,3,5,7}");
// true

Infinity:

Interval.test(-2, "[1, Inf)");
// false

Interval.test(400, "[1, Inf)");
// true
Interval.test(-2, "(-Inf, Inf)");
// true

Interval.test(1000, "(-Inf, Inf)");
// true

Simple excluded:

Interval.test(-2, "(-2, 2)");
// false

Interval.test(2, "(-2, 2)");
// false

Interval.test(0, "(-2, 2)");
// true

Interval.test(1, "(-2, 2)");
// true

Importing

NodeJS:

var Interval = require('math-interval-js');

Html:

<script src="/path/to/that/package/src/interval.js"></script>