Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 501 Bytes

File metadata and controls

11 lines (7 loc) · 501 Bytes
@evolu/common minor

Added Resource management polyfills

Provides Symbol.dispose, Symbol.asyncDispose, DisposableStack, and AsyncDisposableStack for environments without native support (e.g., Safari). This enables the using and await using declarations for automatic resource cleanup.

Polyfills are installed automatically when importing @evolu/common.

See Result.test.ts for usage patterns combining Result with using, DisposableStack, and AsyncDisposableStack.