2.0.3 â€ĸ Published 25 days ago

@hugoalh/range-iterator v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
25 days ago

Range Iterator (ES)

⚖ī¸ MIT

Deno: range_iterator GitHub: hugoalh-studio/range-iterator-es JSR: @hugoalh/range-iterator NPM: @hugoalh/range-iterator

An ES (JavaScript & TypeScript) module to iterate between range.

đŸŽ¯ Target

  • Bun ^ v1.0.0
  • Cloudflare Workers
  • Deno >= v1.34.0 / >= v1.41.1 (For JSR Only)

    🛡ī¸ Require Permission

    N/A

  • NodeJS >= v16.13.0

🔰 Usage

Via JSR With node_modules

đŸŽ¯ Supported Target

  • Bun
  • Cloudflare Workers
  • NodeJS
  1. Install via:
    • Bun
      bunx jsr add @hugoalh/range-iterator[@${Tag}]
    • NPM
      npx jsr add @hugoalh/range-iterator[@${Tag}]
    • PNPM
      pnpm dlx jsr add @hugoalh/range-iterator[@${Tag}]
    • Yarn
      yarn dlx jsr add @hugoalh/range-iterator[@${Tag}]
  2. Import at the script:
    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 jsr.jsonc property exports for available sub paths.
  • It is recommended to import the module with tag for immutability.

Via JSR With Specifier

đŸŽ¯ Supported Target

  • Deno
  1. Import at the script:
    import ... from "jsr:@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 jsr.jsonc property exports for available sub paths.
  • It is recommended to import the module with tag for immutability.

Via NPM With node_modules

đŸŽ¯ Supported Target

  • Cloudflare Workers
  • NodeJS
  1. Install via:
    • NPM
      npm install @hugoalh/range-iterator[@${Tag}]
    • PNPM
      pnpm add @hugoalh/range-iterator[@${Tag}]
    • Yarn
      yarn add @hugoalh/range-iterator[@${Tag}]
  2. Import at the script:
    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 jsr.jsonc property exports for available sub paths.
  • It is recommended to import the module with tag for immutability.

Via NPM With Specifier

đŸŽ¯ Supported Target

  • Bun
  • Deno
  1. Import at the script:
    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 jsr.jsonc property exports for available sub paths.
  • It is recommended to import the module with tag for immutability.

Via Remote Import

đŸŽ¯ Supported Target

  • Deno
  1. Import at the script via:
    • Deno Land
      import ... from "https://deno.land/x/range_iterator[@${Tag}]/mod.ts";
    • GitHub Raw (Require Tag)
      import ... from "https://raw.githubusercontent.com/hugoalh-studio/range-iterator-es/${Tag}/mod.ts";

ℹī¸ Note

  • Although it is recommended to import the entire module with the main path mod.ts, it is also able to import part of the module with sub path if available, but do not import if:

    • it's file path has an underscore prefix (e.g.: _foo.ts, _util/bar.ts), or
    • it is a benchmark or test file (e.g.: foo.bench.ts, foo.test.ts), or
    • it's symbol has an underscore prefix (e.g.: export function _baz() {}).

    These elements are not considered part of the public API, thus no stability is guaranteed for them.

  • Although there have 3rd party services which provide enhanced, equal, or similar methods/ways to remote import the module, beware these services maybe inject unrelated elements and thus affect the security.

  • It is recommended to import the module with tag for immutability.

🧩 API

  • 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>;
    function rangeIterator(start: bigint, end: bigint, step: RangeIteratorIndexType<bigint>): Generator<bigint>;
    function rangeIterator(start: number, end: number, step: RangeIteratorIndexType<number>): Generator<number>;
    function rangeIterator(start: string, end: string, step: RangeIteratorIndexType<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;

ℹī¸ Note

For the prettier documentation, can visit via:

✍ī¸ 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"]
2.0.3

25 days ago

2.0.2

1 month ago

2.0.1

4 months ago

2.0.0

4 months ago

1.0.0

8 months ago