uint8array-tools
A library for dealing with Uint8Arrays.
Last updated 3 years ago by junderw .
MIT · Repository · Original npm · Tarball · package.json
$ npm install uint8array-tools 
SYNC missed versions from official npm registry.

Uint8Array Tools

This library is licensed under MIT.

Usage

Note: fromHex and compare mimic the Buffer.from('ff', 'hex') and buf1.compare(buf2) API. Their behavior should be the same in the browser as well as in Node.

import * as uint8arraytools from 'uint8array-tools';
uint8arraytools.fromHex('ff');
// Uint8Array(1) [ 255 ]
uint8arraytools.toHex(Uint8Array.from([0xff]));
// 'ff'
uint8arraytools.compare(Uint8Array.from([0xff]), Uint8Array.from([0x01]));
// 1
uint8arraytools.compare(Uint8Array.from([0xff]), Uint8Array.from([0xff]));
// 0
uint8arraytools.compare(Uint8Array.from([0x01]), Uint8Array.from([0xff]));
// -1

Current Tags

  • 0.0.9                                ...           latest (3 months ago)

8 Versions

  • 0.0.9                                ...           3 months ago
  • 0.0.8                                ...           3 months ago
  • 0.0.7                                ...           3 years ago
  • 0.0.6                                ...           3 years ago
  • 0.0.5                                ...           3 years ago
  • 0.0.4                                ...           3 years ago
  • 0.0.3                                ...           3 years ago
  • 0.0.2                                ...           3 years ago
Maintainers (1)
Downloads
Total 6
Today 1
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dependents (1)

© 2010 - cnpmjs.org x YWFE | Home | YWFE