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
Yup. Me to. As a workaround I dropped global from the call in decoder.js and just pass a zero:
58 this.parser = parser(0, {
... then in decoder.asm.js I switched back to the native functions
8 var heap = new Uint8Array(buffer) //use native Uint8Array instead of stdlib.Uint8Array
50 var pow = Math.pow //use native Math.pow instead of stdlib.Math.pow
Not 100% sure this will continue to work as intended (please advise) but at least it doesn't fall over any more and seems to do something.
borc/src/decoder.js
Line 58 in f8b6b76
Looks like you removed node globals somewhat recently, but you missed one. This
global
reference is breaking in the latest version of Angular.The text was updated successfully, but these errors were encountered: