UNPKG

jtc-utils

Version:
13 lines (12 loc) 325 B
export class StandardDecoder { decoder; constructor(encoding, options) { this.decoder = new TextDecoder(encoding, { fatal: options?.fatal ?? true, ignoreBOM: options?.ignoreBOM, }); } decode(input, options) { return this.decoder.decode(input, options); } }