@teamteanpm2024/expedita-repudiandae-ullam

1.0.4 • Public • Published

@teamteanpm2024/expedita-repudiandae-ullam Version Badge

github actions coverage License Downloads

npm badge

ES proposal spec-compliant shim for Promise.withResolvers. Invoke its "shim" method to shim Promise.withResolvers if it is unavailable or noncompliant. Note: a global Promise must already exist: the es6-shim is recommended.

This package implements the es-shim API interface. It works in an ES3-supported environment that has Promise available globally, and complies with the spec.

Most common usage:

var assert = require('assert');
var withResolvers = require('@teamteanpm2024/expedita-repudiandae-ullam');

var obj = withResolvers(Promise);
assert.equal(obj.promise instanceof Promise, true);
assert.equal(typeof obj.resolve, 'function');
assert.equal(typeof obj.reject, 'function');

withResolvers.shim(); // will be a no-op if not needed

var obj2 = Promise.withResolvers();

assert.equal(obj2.promise instanceof Promise, true);
assert.equal(typeof obj2.resolve, 'function');
assert.equal(typeof obj2.reject, 'function');

Tests

Simply clone the repo, npm install, and run npm test

Readme

Keywords

Package Sidebar

Install

npm i @teamteanpm2024/expedita-repudiandae-ullam

Weekly Downloads

19

Version

1.0.4

License

MIT

Unpacked Size

11.6 kB

Total Files

5

Last publish

Collaborators

  • shivamkalsi2024