質問編集履歴
1
constructorの付け忘れ
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,6 +23,16 @@
|
|
23
23
|
/*(前略)*/
|
24
24
|
|
25
25
|
const Encoder = class {
|
26
|
+
|
27
|
+
// *** 初期処理 *** //
|
28
|
+
|
29
|
+
constructor() {
|
30
|
+
|
31
|
+
this.length = 0;
|
32
|
+
|
33
|
+
this.buffer = new Uint8Array(4096);
|
34
|
+
|
35
|
+
}
|
26
36
|
|
27
37
|
// *** エンディアン変換 *** //
|
28
38
|
|