Socket
Socket
Sign inDemoInstall

math-interval-parser

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    math-interval-parser

Parse math interval


Version published
Weekly downloads
240K
decreased by-16.66%
Maintainers
1
Install size
9.19 kB
Created
Weekly downloads
 

Readme

Source

Math interval parser

Build Status Dependency Status Coverage Status

Parse math interval. Notation is accepted as part of ISO 31-11.

Install

$ npm install --save math-interval-parser

Usage

import intervalParse from 'math-interval-parser';
// or `var intervalParse = require('math-interval-parser').default;

intervalParse('(-10,20.2]'); // or intervalParse(']-10,20.2]');
//=> {
//=>     from: {
//=>         value: -10,
//=>         included: false,
//=>     },
//=>     to: {
//=>         value: 20.2,
//=>         included: true
//=>     }
//=> }

intervalParse('[1e3,)'); // or intervalParse('[1e3,Infinity)');
//=> {
//=>     from: {
//=>         value: 1000,
//=>         included: true,
//=>     },
//=>     to: {
//=>         value: Infinity,
//=>         included: false
//=>     }
//=> }

See tests for more details.

License

MIT © Dmitry Semigradsky

Keywords

FAQs

Last updated on 09 Jan 2019

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