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
{{ message }}
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
The commit that restricted the version range is 4eb1f7d. This commit mentions the unit tests failing, which indeed they do.
Looking at the unit tests, they are doing things like assert.deepEqual(someUint8Array, [0, 1]). Of course this won't work - a regular Array and a Uint8Array are different types. So, the unit tests simply need to be updated to compare things of the correct type, and the problems will go away.
package.json currently specifies
"node": ">=10.0.0 <11.0.0"
. Look into supporting more versions of node, particularly versions 11 and 12.The text was updated successfully, but these errors were encountered: