Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt

Use this file to discover all available pages before exploring further.

JSTime implements the Web-standard TextDecoder class for converting from binary data types like Uint8Array and strings.
const arr = new Uint8Array([104, 101, 108, 108, 111]);
const decoder = new TextDecoder();
const str = decoder.decode(buf);
// => "hello"

See Docs > API > Binary Data for complete documentation on manipulating binary data with JSTime.