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

easy-range-numbers-with-steps

v1.0.2

Published

Minimal and handy utility to generate ranges of numbers with start, end and optional steps

Downloads

5

Readme

lilcricket

Easy number range numbers with steps

TypeScript

Version      Total Downloads      License     GitHub issues by-label

Minimal and handy utility to generate ranges of numbers with start, end and optional steps or jumps!

Use cases

  • You need a simple, straightforward solution to generate numbers for an array to end on a determined number;
  • Your array needs steps between numbers;
  • Your array should be declarative, i.e. end on the defined number. If you explicit ask for 10, 10 should be the last number unless:
    • If you pass and end parameter and is outside of the step, it will yield only up to steps you need to ensure the rule, otherwise you would get an result not in the step rule defined.

Params

| Parameter | Description | |:---------: |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | first | Required Number The first parameter defines the limit of the numbers returned. If you want a list from 0 up to x, just pass x. X will be included unless other rules apply. | | second | Optional Number The second parameter defines the start. As usual all arrays start with the offset from the start, i.e. 0, with this parameter will decide a number that will be the starting point. | | third | Optional Number The thir parameter defines a step rule. This rules that precedence over the first one. If you want to generate numbers until x, with a gap or steps between them of 3, and the end number is greater than the step rule, it will be not returned, but will be used as a limit to the numbers returned. |

How to use

You always should use with the spread operator.

import { range } from "easy-range-numbers-with-steps";

const arrWithEnd = [...range(5)];

// arrWithEnd will be an array, with [0,1,2,3,4,5]

const arrWithEndAndStart = [...range(5, 10)];

// arrWithEndAndStart will be an array, with [5, 6, 7, 8, 9, 10]

const arrWithEndAndStartAndStep = [...range(10, 0, 2)];

// arrWithEndAndStart will be an array, with [0, 2, 4, 6, 8, 10]

const arrWithEndAndStartAndStep2 = [...range(11, 0, 2)];

// arrWithEndAndStart will be an array, with [0, 2, 4, 6, 8, 10]! 11 is the end, but outside of the desired steps!

If you use directly we'll just get an object with the Symbol and the Generator function. If this is what you want, that's ok! Just an friendly warning if you do not know what this means and you start to get "errors" for misuse.

import { range } from "easy-range-numbers-with-steps";

const arr = range(5);

// You will not get an array! If you do a console.info(arr):
// { [Symbol(Symbol.iterator)]: [GeneratorFunction: generateRange] }

Purpose

This is a minimal lib. No external dependencies, feel free to just copy if necessary to your project. It was created for a specific need and I wanted to share with someone with the same use-cases. Arrays are the bread and butter of web apps and is always handy use helper functions.

Unit tests

MIT License

Copyright (c) 2020 — 2022 Ibrahim Cesar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.