[Javascript] isPromiseLike

Zhentiw發表於2024-09-15
export const isPromiseLike = <T>(value: PromiseLike<T>) => value !== null && (typeof value === 'object' || typeof value === 'function') && typeof value.then === 'function'

相關文章