GithubHelp home page GithubHelp logo

hugoalh-studio / range-iterator-js Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 284 KB

[MIGRATED TO https://github.com/hugoalh-studio/range-iterator-es] A JavaScript module to iterate between range.

License: Other

TypeScript 100.00%
iterate iterator range javascript js

range-iterator-js's Introduction

Range Iterator (JavaScript)

โš–๏ธ MIT

๐Ÿ—‚๏ธ GitHub: hugoalh-studio/range-iterator-js NPM: @hugoalh/range-iterator

๐Ÿ†™ Latest Release Version (Latest Release Date)

A JavaScript module to iterate between range.

๐ŸŽฏ Target

  • Bun ^ v1.0.0
  • Cloudflare Workers
  • Deno >= v1.34.0

    ๐Ÿ›ก๏ธ Require Permission

    N/A

  • NodeJS >= v16.13.0

๐Ÿ”— Other Edition

๐Ÿ”ฐ Usage

Via Installation

๐ŸŽฏ Supported Target

  • Cloudflare Workers
  • NodeJS
  1. Install via console/shell/terminal:
    • Via NPM
      npm install @hugoalh/range-iterator[@<Tag>]
    • Via PNPM
      pnpm add @hugoalh/range-iterator[@<Tag>]
    • Via Yarn
      yarn add @hugoalh/range-iterator[@<Tag>]
  2. Import at the script (<ScriptName>.js):
    import ... from "@hugoalh/range-iterator";

    โ„น๏ธ Note

    Although it is recommended to import the entire module, it is also able to import part of the module with sub path if available, please visit file package.json property exports for available sub paths.

Via NPM Specifier

๐ŸŽฏ Supported Target

  • Bun
  • Deno
  1. Import at the script (<ScriptName>.js):
    import ... from "npm:@hugoalh/range-iterator[@<Tag>]";

    โ„น๏ธ Note

    Although it is recommended to import the entire module, it is also able to import part of the module with sub path if available, please visit file package.json property exports for available sub paths.

๐Ÿงฉ API

  • function rangeIterator(start: bigint, end: bigint, step?: RangeIteratorOptions<bigint>["step"]): Generator<bigint>;
    function rangeIterator(start: number, end: number, step?: RangeIteratorOptions<number>["step"]): Generator<number>;
    function rangeIterator(start: string, end: string, step?: RangeIteratorOptions<string>["step"]): Generator<string>;
    function rangeIterator(start: bigint, end: bigint, options?: RangeIteratorOptions<bigint>): Generator<bigint>;
    function rangeIterator(start: number, end: number, options?: RangeIteratorOptions<number>): Generator<number>;
    function rangeIterator(start: string, end: string, options?: RangeIteratorOptions<string>): Generator<string>;
  • interface RangeIteratorOptions<T extends RangeIteratorAcceptType> {
      /**
      * Whether to exclusive end.
      * @default false
      */
      endExclusive?: boolean;
      /**
      * Step of the decrement/increment of the iterate.
      * @default 1n // Big integer.
      * @default 1 // Number/String.
      */
      step?: RangeIteratorIndexType<T>;
    }
  • type RangeIteratorAcceptType = bigint | number | string;
  • type RangeIteratorIndexType<T extends RangeIteratorAcceptType> = T extends bigint ? bigint : number;

โœ๏ธ Example

  • Array.from(rangeIterator(1, 9));
    //=> [1, 2, 3, 4, 5, 6, 7, 8, 9]
  • Array.from(rangeIterator(1n, 9n, { endExclusive: true }));
    //=> [1n, 2n, 3n, 4n, 5n, 6n, 7n, 8n]
  • Array.from(rangeIterator(1, 9, { step: 0.5 }));
    //=> [1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9]
  • Array.from(rangeIterator("a", "z"));
    //=> ["a", "b", "c", ... +20 ..., "x", "y", "z"]
  • Array.from(rangeIterator(9, 1));
    //=> [9, 8, 7, 6, 5, 4, 3, 2, 1]
  • Array.from(rangeIterator(9n, 1n, { endExclusive: true }));
    //=> [9n, 8n, 7n, 6n, 5n, 4n, 3n, 2n]
  • Array.from(rangeIterator(9, 1, { step: 0.5 }));
    //=> [9, 8.5, 8, 7.5, 7, 6.5, 6, 5.5, 5, 4.5, 4, 3.5, 3, 2.5, 2, 1.5, 1]
  • Array.from(rangeIterator("z", "a"));
    //=> ["z", "y", "x", ... +20 ..., "c", "b", "a"]

range-iterator-js's People

Contributors

hugoalh avatar dependabot[bot] avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.