0.0.10 • Published 2 years ago

mighty-promise v0.0.10

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Mighty Promise

Powerful promise utils collections

codecov

Usage

Install

yarn add mighty-promise
# or
npm i mighty-promise

Use

import {Progressive} from 'mighty-promise'
import {Progressive} from 'https://deno.land/x/mighty_promise@v0.0.6/mod.ts'

API

Progressive.map(arr, callback, option)

map can split a large task on arr to several small tasks. It can be used to prevent heavy calculation from blocking the thread.

option definition

interface ProgressiveOptions {
  // in ms
  minInterval?: number;
  // in ms
  maxExecutionDuration?: number;
  useIdleCallback?: boolean;
}
Example
import {map} from 'mighty-promise'

async function tasks(taskInfo: string[]) {
  map(tasks, task => {
    runTask(task);
  }, {maxExecutionDuration: 10})
}

Progressive.forEach(arr, callback, option)

It is the same as map, but the output is ignored.

0.0.10

2 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago