Baseline Widely available
Note: This feature is available in Web Workers.
The fatal
read-only property of the TextDecoderStream
interface is a boolean
indicating if the error mode of the TextDecoderStream
object is set to fatal
.
If the property is true
then a decoder will throw a TypeError
if it encounters malformed data while decoding. If false
the decoder will substitute the invalid data with the replacement character U+FFFD
(�). The value of the property is set in the TextDecoderStream()
constructor.
A boolean
which will return true
if the error mode is set to "fatal". Otherwise it returns false
, indicating that the error mode is "replacement".
stream = new TextDecoderStream();
console.log(stream.fatal); // returns false
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4