GJS implements the WHATWG Encoding specification.
The TextDecoder
interface represents a decoder for a specific text encoding,
such as UTF-8
, ISO-8859-2
, KOI8-R
, GBK
, etc. A decoder takes a list of
bytes as input and emits a list of code points.
The TextEncoder
interface takes a list of code points as input and emits a
list of UTF-8 bytes.
The functions in this module are available globally, without import.
Type:
- Static
Parameters:
- utfLabel (
Number
) — Optional string, defaulting to"utf-8"
, containing the label of the encoder. - options (
Object
) — Optional dictionary with theBoolean
propertyfatal
, corresponding to theTextDecoder.fatal
property.
Returns:
- (
TextDecoder
) — A newly createdTextDecoder
object
New in GJS 1.70 (GNOME 41)
The TextDecoder()
constructor returns a newly created TextDecoder
object for
the encoding specified in parameter.
If the value for utfLabel
is unknown, or is one of the two values leading to a
'replacement' decoding algorithm ("iso-2022-cn" or "iso-2022-cn-ext"), a
RangeError
is thrown.
Type:
String
New in GJS 1.70 (GNOME 41)
The TextDecoder.encoding
read-only property returns a string containing the
name of the decoding algorithm used by the specific decoder.
Type:
Boolean
New in GJS 1.70 (GNOME 41)
The fatal property of the TextDecoder
interface is a Boolean
indicating
whether the error mode is fatal. If this value is true
, the processed text
cannot be decoded because of malformed data. If this value is false
malformed
data is replaced with placeholder characters.
Type:
Boolean
New in GJS 1.70 (GNOME 41)
The ignoreBOM
property of the TextDecoder
interface is a Boolean
indicating whether the byte order mark is ignored.
Parameters:
- buffer (
Number
) — OptionalArrayBuffer
, aTypedArray
or aDataView
object containing the text to decode. - options (
Object
) — Optional dictionary with theBoolean
propertyfatal
, indicating that additional data will follow in subsequent calls todecode()
. Set totrue
if processing the data in chunks, andfalse
for the final chunk or if the data is not chunked. It defaults tofalse
.
Returns:
- (
String
) — A string result
New in GJS 1.70 (GNOME 41)
The TextDecode.decode()
method returns a string containing the text, given in
parameters, decoded with the specific method for that TextDecoder
object.
Type:
- Static
New in GJS 1.70 (GNOME 41)
The TextEncoder()
constructor returns a newly created TextEncoder
object
that will generate a byte stream with UTF-8 encoding.
Type:
String
New in GJS 1.70 (GNOME 41)
The TextEncoder.encoding
read-only property returns a string containing the
name of the encoding algorithm used by the specific encoder.
It can only have the following value utf-8
.
Parameters:
- string (
String
) — A string containing the text to encode
Returns:
- (
Uint8Array
) — AUint8Array
object containing UTF-8 encoded text
New in GJS 1.70 (GNOME 41)
The TextEncoder.encode()
method takes a string as input, and returns a
Uint8Array
containing the text given in parameters encoded with the specific
method for that TextEncoder
object.
Parameters:
- input (
String
) — A string containing the text to encode - output (
Uint8Array
) — AUint8Array
object instance to place the resulting UTF-8 encoded text into.
Returns:
- (
{String: Number}
) — An object containing the number of UTF-16 units read and bytes written
New in GJS 1.70 (GNOME 41)
The TextEncoder.encode()
method takes a string as input, and returns a
Uint8Array
containing the text given in parameters encoded with the specific
method for that TextEncoder
object.
The returned object contains two members:
read
The number of UTF-16 units of code from the source that has been converted over to UTF-8. This may be less thanstring.length
ifuint8Array
did not have enough space.written
The number of bytes modified in the destinationUint8Array
. The bytes written are guaranteed to form complete UTF-8 byte sequences.