File size: 198 Bytes
bc20498
 
 
 
 
1
2
3
4
5
import { isFunction } from "./isFunction";
export function isPromise(value) {
    return isFunction(value === null || value === void 0 ? void 0 : value.then);
}
//# sourceMappingURL=isPromise.js.map