mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
e8eaaa7724
Add buffer.transcode(source, from, to) method. Primarily uses ICU to transcode a buffer's content from one of Node.js' supported encodings to another. Originally part of a proposal to add a new unicode module. Decided to refactor the approach towrds individual PRs without a new module. Refs: https://github.com/nodejs/node/pull/8075 PR-URL: https://github.com/nodejs/node/pull/9038 Reviewed-By: Anna Henningsen <anna@addaleax.net>
31 lines
936 B
JavaScript
31 lines
936 B
JavaScript
'use strict';
|
|
|
|
if (!process.binding('config').hasIntl) {
|
|
return;
|
|
}
|
|
|
|
const normalizeEncoding = require('internal/util').normalizeEncoding;
|
|
const Buffer = require('buffer').Buffer;
|
|
|
|
const icu = process.binding('icu');
|
|
|
|
// Transcodes the Buffer from one encoding to another, returning a new
|
|
// Buffer instance.
|
|
exports.transcode = function transcode(source, fromEncoding, toEncoding) {
|
|
if (!Buffer.isBuffer(source))
|
|
throw new TypeError('"source" argument must be a Buffer');
|
|
if (source.length === 0) return Buffer.alloc(0);
|
|
|
|
fromEncoding = normalizeEncoding(fromEncoding) || fromEncoding;
|
|
toEncoding = normalizeEncoding(toEncoding) || toEncoding;
|
|
const result = icu.transcode(source, fromEncoding, toEncoding);
|
|
if (Buffer.isBuffer(result))
|
|
return result;
|
|
|
|
const code = icu.icuErrName(result);
|
|
const err = new Error(`Unable to transcode Buffer [${code}]`);
|
|
err.code = code;
|
|
err.errno = result;
|
|
throw err;
|
|
};
|