web api instance property
TextDecoderStream: ignoreBOM property
Available in workers
The ignoreBOM read-only property of the TextDecoderStream interface is a Boolean indicating whether the byte order mark will be included in the output or skipped over.
Value
true if the byte order mark will be included in the decoded text; false if it will be skipped over when decoding and omitted.
Examples
stream = new TextDecoderStream();
console.log(stream.ignoreBOM); // returns false
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.