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
There are issues with how the random number generator code is implemented. It fails with default settings in browserify and babel. (See #172)
There are a number of issue that describe the problem but none that detail the solution.
There should be notes in the main readme for usage with popular packaging setups, like babel.
The code should be patched so that it doesn't break by default.
The offending line is relying on global being defined as window. For some reason global === undefined when this library is included in another project and compiled using babel/webpack.
The text was updated successfully, but these errors were encountered:
There are issues with how the random number generator code is implemented. It fails with default settings in browserify and babel. (See #172)
There are a number of issue that describe the problem but none that detail the solution.
The offending line is relying on
global
being defined aswindow
. For some reasonglobal === undefined
when this library is included in another project and compiled using babel/webpack.The text was updated successfully, but these errors were encountered: