Fix gitignore
All checks were successful
Android Build / publish (push) Successful in 32s
Linux Build / publish (push) Successful in 54s

This commit is contained in:
olcxja 2026-05-10 14:05:21 +02:00
commit a3f9280a1e
2902 changed files with 86686 additions and 2 deletions

View file

@ -0,0 +1,5 @@
export function isPromise(maybePromise) {
return (!!maybePromise &&
!!maybePromise.then &&
typeof maybePromise.then === 'function');
}