UNPKG

rubico

Version:

[a]synchronous functional programming

12 lines (11 loc) 209 B
export = isPromise; /** * @name isPromise * * @synopsis * isPromise(value any) -> boolean * * @description * Determine whether a value is a promise. */ declare function isPromise(value: any): boolean;