Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@bitty/deferred
Advanced tools
It provides a function to create Deferred objects. They contains a Promise and methods to imperatively resolve or reject it.
@bitty/deferred
It provides a function to create Deferred objects. They contain a Promise and methods to imperatively resolve or reject it.
📦 Distributions in ESM, CommonJS, UMD and UMD minified formats.
⚡ Lightweight:
🔋 Bateries included:
Promise
, but you can use a polyfill in unsupported environments.🏷 Safe:
This library is published in the NPM registry and can be installed using any compatible package manager.
npm install @bitty/deferred --save
# For Yarn, use the command below.
yarn add @bitty/deferred
This module has a UMD bundle available through JSDelivr and Unpkg CDNs.
<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/@bitty/deferred"></script>
<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/@bitty/deferred"></script>
<script>
// UMD module defines "createDeferred" in global/window scope.
console.log(createDeferred);
//=> "[Function: createDeferred]"
let deferred = createDeferred();
deferred.promise.then(() => {
console.log('It was okay.');
});
deferred.resolve();
</script>
This module default exports createDeferred
, which is a factory function that creates Deferred
objects.
import createDeferred from '@bitty/deferred';
const deferred = createDeferred<boolean>();
Deferred
objects exposes a Promise
and methods to reject or resolve it.
import createDeferred, { Deferred } from '@bitty/deferred';
let deferred: Deferred<number>;
// ...
deferred.promise
.then(value => console.log(`You received $ ${value.toFixed(2)}!`))
.catch(reason => console.error(`Couldn't receive because of `, reason));
deferred.resolve(10);
//=> It logs "You received $ 50.00!" in the console.
deferred.reject(new Error('The account number is invalid.'));
//=> Won't log anything because promise is already resolved.
We also export the Deferred
interface. Which simply defines the promise property (an instance of Promise
) and the methods that change it.
interface Deferred<T> {
readonly promise: Promise<T>;
reject(reason: unknown): void;
resolve(value: T | PromiseLike<T>): void;
}
Released under MIT License.
FAQs
It provides a function to create Deferred objects. They contains a Promise and methods to imperatively resolve or reject it.
We found that @bitty/deferred demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.