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
I've compiled random-access-idb directly and indirectly (via random-access-web) with Browserify. In both cases, there is an error, stating that block is undefined. I believe it's happening because the line var block in write() is removed during the bundling process. This is likely because the variable isn't assigned, and therefore the bundler removes the line. I suggest updating it to this:
varblock=null
The text was updated successfully, but these errors were encountered:
I've compiled
random-access-idb
directly and indirectly (viarandom-access-web
) with Browserify. In both cases, there is an error, stating thatblock
is undefined. I believe it's happening because the linevar block
inwrite()
is removed during the bundling process. This is likely because the variable isn't assigned, and therefore the bundler removes the line. I suggest updating it to this:The text was updated successfully, but these errors were encountered: