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
add()
on npm doc. for add(value, key) have example code where
add(value, key)
add({ name: 'name', email: 'email' }).then( event => { console.log('ID Generated: ', event.target.result); }, error => { console.log(error); } );
need to be changed to
add({ name: 'name', email: 'email' }).then( event => { console.log('ID Generated: ', event); }, error => { console.log(error); } );
The text was updated successfully, but these errors were encountered:
Yup, Ive also run into this same and came here to report this issue and found it open.
Sorry, something went wrong.
No branches or pull requests
on npm
doc. for
add(value, key)
have example code where
need to be changed to
The text was updated successfully, but these errors were encountered: