mirror of
https://github.com/denoland/deno.git
synced 2025-01-22 06:09:25 -05:00
Remove unused property of StringReader (#6743)
This commit is contained in:
parent
2dea2c9e75
commit
7be29fab8d
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ import { encode } from "../encoding/utf8.ts";
|
|||
|
||||
/** Reader utility for strings */
|
||||
export class StringReader extends Deno.Buffer {
|
||||
constructor(private readonly s: string) {
|
||||
constructor(s: string) {
|
||||
super(encode(s).buffer);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue