UNPKG

sd-is

Version:

Tiny JavaScript type check utility functions with smart developer-friendly feedback.

2 lines 120 B
export const isPromise = (value) => !!value && typeof value.then === 'function' && typeof value.catch === 'function';