Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/capi/deps/std/io.ts>StringReader

[WIP] A framework for crafting interactions with Substrate chains
Latest
class StringReader
extends Buffer
import { StringReader } from "https://deno.land/x/capi@v0.1.1-beta.1/deps/std/io.ts";

Reader utility for strings.

Examples

Example 1

import { StringReader } from "https://deno.land/std@0.224.0/io/string_reader.ts";

const data = new Uint8Array(6);
const r = new StringReader("abcdef");
const res0 = await r.read(data);
const res1 = await r.read(new Uint8Array(6));

// Number of bytes read
console.log(res0); // 6
console.log(res1); // null, no byte left to read. EOL

// text

console.log(new TextDecoder().decode(data)); // abcdef

Output:

6
null
abcdef

Constructors

new
StringReader(s: string)