Lines Matching +defs:read +defs:string
9 const readable = new Readable({ read() {} }); method
11 const string = 'abc'; constant
24 const readable = new Readable({ read() {} }); method
40 const readable = new Readable({ read() {} }); method
43 const string = Buffer.from('abc').toString(encoding); constant
76 expected.push({ encoding, string: expect }); property
82 const r1 = new Readable({ read() {} }); method
86 const r2 = new Readable({ read() {}, encoding: streamEncoding }); method
106 const r1 = new Readable({ read() {} }); method
110 const r2 = new Readable({ read() {}, encoding }); method
117 const readable = new Readable({ objectMode: true, read() {} }); method