astro-ghostcms/.pnpm-store/v3/files/d9/0de1cdd73612ee78f966048d31a...

6 lines
155 B
Plaintext

export function isPromise(maybePromise) {
return (!!maybePromise &&
!!maybePromise.then &&
typeof maybePromise.then === 'function');
}