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

number-pattern-selector

v1.0.2

Published

NPS is a standardized number selector pattern. It allows for returning numbers based on a text pattern.

Downloads

17

Readme

Number Pattern Selector (NPS)

npm version

NPS is a standardized number selector pattern. It allows for returning numbers based on a String pattern.

Usage

Import

ESM

import {
  numberPatternParser,
  validNumberPattern,
} from "number-pattern-selector";

CommonJS (Not supported yet)

const {
  numberPatternParser,
  validNumberPattern,
} = require("number-pattern-selector");

numberPatternParser

This is the main parser function. It takes in an NPS pattern and optionally an options object.

Arguments:

| Argument | Description | Type | | -------- | ---------------------- | ------------------ | | pattern | The NPS pattern | string | | options | Options for the parser | object (see below) |

Ouput: number[] (Array of Integers)

Options:

| Option | Description | Type | Default Value | | ------------- | ---------------------------------- | ------ | ------------- | | min | The minimum number for the parser | number | 0 | | max | The maximum number for the parser | number | 10 | | rangeSelector | The delimiter used for Range (1:5) | string | ":" |

Example:

import {
  numberPatternParser,
} from "number-pattern-selector";

const pattern '1:5';
const selectedNumbers = numberPatternParser(pattern); // Ouput: [1, 2, 3, 4, 5]

validNumberPattern

This is a pattern validator that returns true if the string pattern passed in is valid. Note: this function does not currently support options.rangeSelector which may lead to false negatives.

Arguments:

| Argument | Description | Type | | -------- | --------------- | ------ | | pattern | The NPS pattern | string |

Ouput: boolean

Example:

import {
  validNumberPattern,
} from "number-pattern-selector";

const pattern '1:5';
const selectedNumbers = validNumberPattern(pattern); // Ouput: true

Sample Use Cases

Table Row/Array Index Selection

NPS allows end-users to type in specific formats to quickly select rows in a table. This could be useful for users who heavily rely on keyboards for data selection and entry.

Imagine a user needs to quickly select all but 1 index in an array with 1000 indices. It is much easier for them to type "!0" to exclude the first row then it would be to select all 1000 indices. Likewise, selecting only even rows is a pain but typing "%2" is not.

Developer Shortcuts

If you as a developer wanted to make a button on the frontend that selected all even indices, using this package can help cut down on development time.

Pattern Standards

Number Patterns are created with a mix of integers and operators. In most cases the operator is in front of the integer.

Pattern Operators

| Operator | Description | Example | | -------- | ------------------------ | ---------------------------- | | : | Range | 1:5 => [1, 2, 3, 4, 5] | | > | Greater Than | >5 => [6, 7, 8, 9...] | | >= | Greater Than or Equal to | >5 => [5, 6, 7, 8, 9...] | | < | Less Than | <3 => [0, 1, 2] | | <= | Less Than or Equal to | <=3 => [0, 1, 2, 3] | | % | Modulo | %2 => [0, 2, 4, 6, 8, 10...] |

Inclusion Single Patterns

Patterns can contain just an integer or an integer-selector combination. A minimum and maximum number must be set to avoid Infinity.


Single Number

A single integer is provided and returned.

Valid Patterns: 2, !2 Invalid Patterns: A

Returns: "2" returns [2] "4" returns [4] "!2" returns all numbers between the min and max except [2]


Range

Two numbers are provided seperated by a colon ":". Range cannot contain any other operators, only integers and "not"

Valid Patterns: 2:4, !2:4 Invalid Patterns: 2:!4, >2:4

Returns: "2:4" returns [2, 3, 4] "!2:4" returns all numbers between the min and max except [2, 3, 4]


Modulo

A percentage sign (modulo) prefixes an integer. This returns numbers divisible by the given integer.

Valid Patterns: %2, !%2 Invalid Pattern: 2%

Returns: "%2" returns all integers divisible by 2 [2, 4, 6, 8...] "!%2" returns all integers not divisible by 2 [1, 3, 5, 7...]


Greater Than

A greater than symbol prefixes an integer. This returns all numbers after the integer provided until the max

Valid Patterns: >2, !>2 Invalid Pattern: 2>

Returns: ">2" returns all integers after 2 [3, 4, 5, 6...] "!>2" returns all integers before and including 2 [0, 1, 2]


Greater Than or Equal to

A greater than and equal symbol prefixes an integer. This returns all numbers after including the integer provided

Valid Patterns: >=2, !>=2 Invalid Pattern: >2=, 2>=

Returns: ">=2" returns all integers after and including 2 [2, 3, 4, 5, 6...] "!>=2" returns all integers before 2 [0, 1]


Less Than

A less than symbol prefixes an integer. This returns all numbers before the integer provided until the min value

Valid Patterns: <2, !<2 Invalid Pattern: 2<

Returns: "<2" returns all integers before 2 [0, 1] "!<2" returns all integers after and including 2 [1, 2, 3, 4...]


Less Than or Equal to

A less than and equal symbol prefixes an integer. This returns all integers before and including the integer provided

Valid Patterns: <=2, !<=2 Invalid Pattern: >2=, 2>=

Returns: "<=2" returns all integers before and including 2 [0, 1, 2] "!<=2" returns all integers after 2 [3, 4, 5, 6...]


Inclusion Multi-Patterns

Multi-patterns are created when you add a comma to your pattern. This allows for multiple single patterns to be used and interchanged with each other. There is no limit to the number of patterns that can be used.

All numbers between 1:3 and 5:7

1:3,5:7

[1, 2, 3, 5, 6, 7]

All Even Numbers and all numbers greater than 5

%2,>5

[6, 8, 10, 12, 14...]

Exclusion Pattern

Any pattern may have an exclamation point ! in front of it. This indicates an exclusion pattern. Exclusion patterns can be mixed with Inclusive patterns.

Example:

1:5,!3 will return [1, 2, 4, 5]

>=1,!2:9,<=10 will return [1, 10]

!%2 will return odd numbers [1, 3, 5, 7, 9]

Contributing

Feel free to make a PR for any improvements. For now, request a review from AustinMutschler.