We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this
Use of and assumption of this being the database reference is resulting in inconsistent behavior. Specifically this line
upsert/index.js
Line 55 in 5020aa5
If declaring a database namespace as such:
const db = { config: new PouchDB('config', { adapter }) }
And running the upset method as such:
await db.users.upsert(`${data.userName}-cursor`, (doc) => { (doc as CursorDoc).cursor = data.nextCursor; return doc; });
Will result in the db variable being assigned to the global scope and .get being undefined.
db
.get
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Use of and assumption of
this
being the database reference is resulting in inconsistent behavior. Specifically this lineupsert/index.js
Line 55 in 5020aa5
If declaring a database namespace as such:
And running the upset method as such:
Will result in the
db
variable being assigned to the global scope and.get
being undefined.The text was updated successfully, but these errors were encountered: