summaryrefslogtreecommitdiff
path: root/js/buffer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/buffer.ts')
-rw-r--r--js/buffer.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/buffer.ts b/js/buffer.ts
index db060f2ff..c5be762f5 100644
--- a/js/buffer.ts
+++ b/js/buffer.ts
@@ -66,14 +66,14 @@ export class Buffer implements Reader, Writer {
}
/** empty() returns whether the unread portion of the buffer is empty. */
- empty() {
+ empty(): boolean {
return this.buf.byteLength <= this.off;
}
/** length is a getter that returns the number of bytes of the unread
* portion of the buffer
*/
- get length() {
+ get length(): number {
return this.buf.byteLength - this.off;
}