npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

interval-match

v0.6.0

Published

Match a set of intervals with various patterns.

Downloads

16

Readme

IntervalMatch

npm version Build Status

This library allows you to match a set of intervals with various patterns.

Install

$ npm install --save interval-match

Introduction

Intervals are objects which define their position and a payload. For example, this is an interval:

{
    from: 10,
    to: 15.7,
    data: { some: 'thing' }
}

When you have a set of intervals, you might need to find some of them based on their properties as a whole. Think of this process as similar to regular expressions: just like a{1,3}b will match any string composed by one, two or three a's followed by a b, you can write a pattern that can match an interval with a length of 20 which is followed by another interval which ends before 50.

Usage

First, import the module:

const IntervalMatch = require('interval-match').IntervalMatch  // CommonJS / Node style
// or:
import { IntervalMatch } from 'interval-match'  // ES6 style

Then you can call the match function over some intervals to know if they match a specific pattern.

Example:

import { IntervalMatch } from 'interval-match'

// Here we define the pattern we want to match.
// In this case, we're saying we want to match the intervals which:
//  - start between 35 and 45
//  - have a length of 5 or more
//  - are followed by a space (the gap before the next interval) which:
//     - is half the size of them
//  - and then by an interval which:
//     - is smaller or equal to 30
const pattern = [
    {
        interval: {
            name: 'A',
            from: { lowerBound: 35, upperBound: 45 },
            to: null,
            minSize: 5,
            maxSize: Infinity
        },
        followingSpace: {
            name: 'B',
            minSize: 'A * 0.5',
            maxSize: 'A * 0.5'
        }
    },
    {
        interval: {
            name: 'C',
            from: null,
            to: null,
            minSize: 0,
            maxSize: 30
        },
        followingSpace: null
    }
]

// Our intervals
const intervals = [
    { from: 20, to: 30, data: 'apple' },
    { from: 40, to: 60, data: 'orange' },
    { from: 70, to: 100, data: 'lemon' }
];

// Get the matches
const matches = IntervalMatch.match(pattern, intervals);

// Now `matches` will be:
//   {
//     success: true,
//     groups:
//      Map {
//        'A' => { from: 40, to: 60, data: 'orange' },
//        'B' => { from: 60, to: 70, data: undefined, isSpace: true },
//        'C' => { from: 70, to: 100, data: 'lemon' } },
//     result:
//      [ { from: 40, to: 60, data: 'orange' },
//        { from: 60, to: 70, data: undefined, isSpace: true },
//        { from: 70, to: 100, data: 'lemon' } ]
//   }

Patterns

As we saw in the example, a pattern is actually an array of rules, each of which is focused on a single interval. So, a sequence of rules describes how the succession of the intervals should look like.

There are two types of rules: IntervalRule and SpaceRule. The first is applied to intervals, the second to the gaps between intervals.

IntervalRule

{
    name: 'A',
    from: { lowerBound: 35, upperBound: 45 },
    to: null,
    minSize: 5,
    maxSize: Infinity
}
  • name: string

    The name to assign to the matched interval to identify it in the result. If it is in the form of an identifier (only letters, numbers and underscores, and doesn't start with a number) then it can be used in expressions (see below).

  • from: Endpoint | null

    If not null, defines where the interval should start. It takes an Endpoint, which is an object like the following, that you can use to specify the allowed range for the start of the interval:

    { lowerBound: number, upperBound: number }
  • to: Endpoint | null

    If not null, defines where the interval should end. See from.

  • minSize: number | string

    Defines the minimum size of the interval. If it is a string, the value is interpreted as an arithmetic expression which:

    • can use +, - and * operators (no division)
    • can use any preceding matched name as a variable (e.g: 1.5 * (A + B) - 1)
    • must be linear, in a mathematical sense
  • maxSize: number | string

    Defines the maximum size of the interval. See minSize.

SpaceRule

{
    name: 'B',
    minSize: 'A * 0.5',
    maxSize: 100
}
  • name: string

    The name to assign to the matched gap to identify it in the result. See IntervalRule.name for more info.

  • minSize: number | string

    Defines the minimum size of the gap. See IntervalRule.minSize for more info.

  • maxSize: number | string

    Defines the maximum size of the gap. See IntervalRule.maxSize for more info.