We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6d0d19 commit b1afc6fCopy full SHA for b1afc6f
11-advanced-recipes/03-async-init-queues-state/db.js
@@ -16,7 +16,7 @@ class QueuingState {
16
17
METHODS_REQUIRING_CONNECTION.forEach(methodName => {
18
this[methodName] = function (...args) {
19
- console.log('Command queued:', methodName, arguments)
+ console.log('Command queued:', methodName, args)
20
return new Promise((resolve, reject) => {
21
const command = () => {
22
db[methodName](...args)
0 commit comments