An open API service indexing awesome lists of open source software.

https://github.com/shmishtopher/wasm-uint

uint utilities for WebAssembly
https://github.com/shmishtopher/wasm-uint

little-endian uint wasm wasm-bytecode wasm-codegen webassembly

Last synced: 18 days ago
JSON representation

uint utilities for WebAssembly

Awesome Lists containing this project

README

          

# wasm-uint
uint utilities for WebAssembly

```npm i wasm-uint --save```

## Included functions
all function return a new `Uint8ClampedArray`
```javascript
import { uint8 } from 'wasm-uint' // 8 bit unsigned int
import { uint16 } from 'wasm-uint' // 16 bit unsigned int
import { uint32 } from 'wasm-uint' // 32 bit unsigned int

import { int_u } from 'wasm-uint' // unsigned int algorithm
```