0.0.6 • Published 11 months ago

@steeringwaves/context v0.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

@steeringwaves/context

workflow

A typescript context library.

Example

const Context = require("@steeringwaves/context").default;

const parent = new Context();
const child = new Context({ Parent: parentCtx });
parent.on("done", () => {
	console.log("parent done");
});

child.on("done", () => {
	console.log("child done");
});

console.log(child.Done()); // false

parent.Cancel();

console.log(child.Done()); // true
0.0.6

11 months ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago