array-buffer-from-string

Create an ArrayBuffer with the raw bytes from a String.

Usage no npm install needed!

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

README

ArrayBuffer from String

Create an ArrayBuffer with the raw bytes from a String.

Installation

npm install --save array-buffer-from-string

Usage

const arrayBufferFromString = require('array-buffer-from-string')

console.log(arrayBufferFromString('Hello world!'))
//=> ArrayBuffer { byteLength: 24 }

API

arrayBufferFromString(input: string) => ArrayBuffer

Create an ArrayBuffer with the raw bytes from a String.

See also

hex-to-array-buffer - Turn a string of hexadecimal characters into an ArrayBuffer