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