chore: bump node@14.x in devDependencies (#122905)

This commit is contained in:
Robo
2021-05-04 01:04:13 -07:00
committed by GitHub
parent 6d4aeb99bd
commit bce4d71f64
69 changed files with 175 additions and 170 deletions

View File

@@ -23,7 +23,7 @@ export class LineDecoder {
private stringDecoder: StringDecoder;
private remaining: string | null;
constructor(encoding: string = 'utf8') {
constructor(encoding: BufferEncoding = 'utf8') {
this.stringDecoder = new StringDecoder(encoding);
this.remaining = null;
}