DisposableStack.prototype.disposed

The disposed accessor property of DisposableStack instances returns a boolean indicating whether or not this DisposableStack has been disposed or moved by doing any of the following:

Examples

Checking if a stack is disposed

js
const disposer = new DisposableStack();
console.log(disposer.disposed); // false
disposer.dispose();
console.log(disposer.disposed); // true

Specifications

Specification
ECMAScript Async Explicit Resource Management
# sec-get-disposablestack.prototype.disposed

Browser compatibility

See also