UNPKG

caught

Version:

Avoids UnhandledPromiseRejectionWarning and PromiseRejectionHandledWarning

7 lines (3 loc) 104 B
'use strict'; var p = Promise.reject(0); setTimeout(() => p.catch(e => console.error('caught')), 0);