Wrap long line in lib/streams.ts

This commit is contained in:
Kirk Scheibelhut 2019-04-10 14:19:12 -07:00
parent 334ca88b50
commit dfd8fc504a

View File

@ -12,7 +12,8 @@
const BUF_SIZE = 65536 * 4;
type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'latin1' | 'binary' | 'hex';
type BufferEncoding =
'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'latin1' | 'binary' | 'hex';
export class ReadStream {
buf: Buffer;