ieee754
ieee754 copied to clipboard
Read/write IEEE754 floating point numbers from/to a Buffer or array-like object.
This [bug](https://github.com/feross/buffer/issues/197) eventually leads to this PR.
Updated codebase to ESM (friendlier for Deno and browser imports - as well as nodes new http loader) also had to update devDep to run test against ESM
`index.d.ts` declares `buffer` is `Uint8Array`, but in fact it can be `Array` or any kind of array-like object (`ArrayLike` in TypeScript), so I've tweaked those declarations in `index.d.ts` and add...