// TextDecoder オブジェクトを作成 var text_decoder = new TextDecoder(); // 出力テスト console.log(text_decoder); // ------------------------------------------------------------ // TextDecoderOptions オブジェクトを用意する // ------------------------------------------------------------ var text_decoder_options = { fatal : false, // 符号化の違反を確認するか?(エラーモードの有無) ignoreBOM : true // BOM 情報を考慮しないか? }; // --------------------------