UNPKG

@thi.ng/checks

Version:
6 lines (5 loc) 209 B
import { implementsFunction } from "./implements-function.js"; const isPromiseLike = (x) => x instanceof Promise || implementsFunction(x, "then") && implementsFunction(x, "catch"); export { isPromiseLike };