UNPKG

209 BJavaScriptView Raw
1import { implementsFunction } from "./implements-function.js";
2const isPromiseLike = (x) => x instanceof Promise || implementsFunction(x, "then") && implementsFunction(x, "catch");
3export {
4 isPromiseLike
5};