string-arraybuffer

A npm module for easy conversion from string to arraybuffer and from arraybuffer to string.

Usage no npm install needed!

<script type="module">
  import stringArraybuffer from 'https://cdn.skypack.dev/string-arraybuffer';
</script>

README

string-arraybuffer

Easily convert string to arrayBuffer and from arrayBuffer to string

Useful when dealling with a function which accepts arraybuffer or return arraybuffer.

Install

$ npm install string-arraybuffer

Usage

const string_arraybuffer = require('string-arraybuffer');

####Converting String to ArrayBuffer
arraybuffer_result = string_arraybuffer.str2ab("I love Africa")
//=> Uint8Array [ 73, 32, 108, 111, 118, 101, 32, 65, 102, 114, 105, 99, 97 ]

####Converting ArrayBuffer to String

string_arraybuffer.ab2str(arraybuffer_result)
//=> "I love Africa"

Related

License

MIT © Andrews Agyemang Opoku