芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/medicine.joruridoctor.com/node_modules/rxjs/src/internal/util/isPromise.ts
import { isFunction } from "./isFunction"; /** * Tests to see if the object is "thennable". * @param value the object to test */ export function isPromise(value: any): value is PromiseLike
{ return isFunction(value?.then); }