tc39 / proposal-atomics-wait-async

"asynchronous atomic wait" for ECMAScript
https://tc39.github.io/proposal-atomics-wait-async/
Other
90 stars 18 forks source link

fixed error in polyfill #8

Closed ibaryshnikov closed 5 years ago

ibaryshnikov commented 5 years ago

There's no variable e in the scope. Did you mean ev.data[0]?

lars-t-hansen commented 5 years ago

Thanks! ev.data[0] is not quite it, since that only gets us the first value -- it should be ev.data.join(',') probably.

ibaryshnikov commented 5 years ago

@lars-t-hansen thanks!