MCPcopy Create free account
hub / github.com/arfct/itty-bitty / stringToByteArray

Function stringToByteArray

docs/bitty.js:235–238  ·  view source on GitHub ↗
(string)

Source from the content-addressed store, hash-verified

233}
234
235function stringToByteArray(string) {
236 return new TextEncoder().encode(string);
237 return Uint8Array.from(string, c => c.charCodeAt(0));
238}
239
240function byteArrayToString(bytes) {
241 return new TextDecoder().decode(bytes);

Callers 2

DataURLClass · 0.85
decompressDataFunction · 0.85

Calls 1

fromMethod · 0.80

Tested by

no test coverage detected