@teamteanpm2024/expedita-repudiandae-ullam
v1.0.4
Published
Downloads
5
Maintainers
Keywords
Readme
@teamteanpm2024/expedita-repudiandae-ullam
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