1.0.0 • Published 3 years ago

ascii-helper v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

ASCII helper

Features

ASCII helper for encoding and decoding strings:

  • Encode string to ASCII hex string
  • Decode ASCII hex string to string

Installation

npm install ascii-helper

Usage

import { decode, encode } from 'ascii-helper';

// 537472696e6720746f20656e636f6465
encode('String to encode');

// String to decode
decode('537472696e6720746f206465636f6465');