/**
* Type guard to check if a value is promise-like (has a `then` method).
*/exportfunctionisPromiseLike(value) {
return value != null && (typeof value === 'object' || typeof value === 'function') && typeof value.then === 'function';
}
//# sourceMappingURL=type-guards.js.map