mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('node:assert');
|
|
|
|
const latin1Bytes = new Uint8Array([0xc1, 0xe9, 0xf3]);
|
|
|
|
const expectedString = 'Áéó';
|
|
|
|
const decoder = new TextDecoder('windows-1252');
|
|
const decodedString = decoder.decode(latin1Bytes);
|
|
|
|
assert.strictEqual(decodedString, expectedString);
|