TenantAtlas/apps/platform/.pnpm-store/v10/files/d9/0de1cdd73612ee78f966048d31aae883943fa246f3ff635f36d7bd1257022704fd502214a0781ecc14de1a1caa6b40adfab9278e89806bab1d7f57a44c8697
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

6 lines
155 B
Plaintext

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