| bits.js |
bits: Bitwise buffer utilities. The utilities here treat a buffer
as a little-endian bigint, so the lowest-order bit is bit #0 of
`buffer[0]`, and the highest-order bit is bit #7 of
`buffer[buffer.length - 1]`.
|
3536 |
- |
| bufs.js |
bufs: Buffer utilities.
|
4915 |
- |
| index.js |
According to https://webassembly.github.io/spec/core/binary/values.html#binary-int
max = ceil(32/7)
|
932 |
- |
| leb.js |
leb: LEB128 utilities.
|
7961 |
- |