aplbrain / npyjs

Read numpy .npy files in JavaScript
https://aplbrain.github.io/npyjs/
Apache License 2.0
77 stars 21 forks source link

fixed uint32 array #47

Closed epbsb closed 4 months ago

epbsb commented 4 months ago

The constructor being int32 causes bug for arrays with values bigger than 2^31 in uint32 type arrays, making these values negative for a unsigned type.

j6k4m8 commented 4 months ago

Thank you @epbsb!