前提・実現したいこと
node.js のBuffer
函数を普通のJavaScriptで実行しようと思ったのですが、どうやらBuffer
函数はnode.js以外では対応してなさそうです。
代わりになる函数は用意されているのでしょうか?もし用意されていれば、函数名と使い方を教えてほしいです。
よろしくお願いします。
発生している問題・エラーメッセージ
console
1VM207:1 Uncaught ReferenceError: Buffer is not defined
該当のソースコード
javascript
1const Encoder = class { 2 // *** 初期処理 *** // 3 constructor() { 4 this.length = 0; 5 this.buffer = new Uint8Array(4096); 6 } 7 /*(略)*/ 8 // *** 文字列型 *** // 9 string(str) { 10 if (str) { 11 let bytes = new Uint8Array(Buffer.from(str)); 12 this.buffer.set(bytes, this.length); 13 this.length += bytes.length; 14 } 15 this.buffer[this.length++] = 0; 16 return this; 17 } 18 /*(略)*/ 19}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。