mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
26 lines
882 B
JavaScript
26 lines
882 B
JavaScript
'use strict';
|
||
require('../common');
|
||
const assert = require('assert');
|
||
|
||
// ASCII conversion in node.js simply masks off the high bits,
|
||
// it doesn't do transliteration.
|
||
assert.strictEqual(Buffer.from('hérité').toString('ascii'), 'hC)ritC)');
|
||
|
||
// 71 characters, 78 bytes. The ’ character is a triple-byte sequence.
|
||
const input = 'C’est, graphiquement, la réunion d’un accent aigu ' +
|
||
'et d’un accent grave.';
|
||
|
||
const expected = 'Cb\u0000\u0019est, graphiquement, la rC)union ' +
|
||
'db\u0000\u0019un accent aigu et db\u0000\u0019un ' +
|
||
'accent grave.';
|
||
|
||
const buf = Buffer.from(input);
|
||
|
||
for (let i = 0; i < expected.length; ++i) {
|
||
assert.strictEqual(buf.slice(i).toString('ascii'), expected.slice(i));
|
||
|
||
// Skip remainder of multi-byte sequence.
|
||
if (input.charCodeAt(i) > 65535) ++i;
|
||
if (input.charCodeAt(i) > 127) ++i;
|
||
}
|