Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 336 Bytes

no-floating-promises.md

File metadata and controls

13 lines (7 loc) · 336 Bytes

Pattern: Floating promise

Issue: -

Description

Promises returned by functions must be handled appropriately.

Rationale: Unhandled Promises can cause unexpected behavior, such as resolving at unexpected times.

Further Reading