I have been working with node's fs.readFileSync()
, passing "utf8"
as the encoding to read input. When the file contains a BOM character in UTF8 (0xEF 0xBF 0xBB) it converts it to the byte sequence 0xFE 0xFF instead, which is the Unicode encoding.
Why does it do this? Why not keep the origin sequence for BOMs in UTF8?