type-array-convert
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

type-array-convert

Build Status

type-array-convert is TypeArray convert library.

Installation

npm install --save type-array-convert

Usage

Example :

var tac = require("type-array-convert");
 
var u8Array = new Uint8Array([0x01, 0x23, 0x45, 0x67]);
var out = tac.uint8toUint32(u8Array);
console.log(out);
// Uint32Array [ 19088743 ]
console.log(0x01234567);
// 19088743
 

For details, see test code. (basic.test.ts and advancd.test.ts)

License

MIT

Package Sidebar

Install

npm i type-array-convert

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

11.6 kB

Total Files

7

Last publish

Collaborators

  • rearn