UNPKG

navigation-stack

Version:

Handles navigation in a web browser

9 lines (8 loc) 206 B
export default function isPromise(anything) { // Weirdly, `typeof null` is "object". return ( typeof anything === 'object' && anything !== null && typeof anything.then === 'function' ); }