using System.Text; namespace Jint.Tests.Runtime.Domain; /// /// https://encoding.spec.whatwg.org/#textdecoder /// /// Public API, do not make internal! public sealed class TextDecoder { public string Decode() => string.Empty; public string Decode(byte[] buff) => Encoding.UTF8.GetString(buff); }