Guest User

Untitled

a guest
Dec 12th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function getEncoder(encoding) {
  2. const encoder = encoding === "utf8" ? new UTF8Encoder()
  3. : encoding === "utf16le" ? new UTF16Encoder(false)
  4. : encoding === "utf16be" ? new UTF16Encoder(true)
  5. : throw new Error("Unsupported encoding");
  6. }
Add Comment
Please, Sign In to add comment