/**
* Returns true if the value acts like a Promise, i.e. has a "then" function,
* otherwise returns false.
*/// eslint-disable-next-line no-redeclareexport default function isPromise(value) {
returntypeof (value === null || value === void0 ? void0 : value.then) === 'function';
}