You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we consider giving developers access to sync API's we should do so using the *Sync convention. For example, if we have a method db.prepare() that is async, we should have a method called db.prepareSync(). This method will return a value instead of a value wrapped in a promise
The text was updated successfully, but these errors were encountered:
If we consider giving developers access to sync API's we should do so using the
*Sync
convention. For example, if we have a methoddb.prepare()
that is async, we should have a method calleddb.prepareSync()
. This method will return a value instead of a value wrapped in a promiseThe text was updated successfully, but these errors were encountered: