mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-01-24 06:14:45 +01:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
|
export function isPromise(maybePromise) {
|
||
|
return (!!maybePromise &&
|
||
|
!!maybePromise.then &&
|
||
|
typeof maybePromise.then === 'function');
|
||
|
}
|