mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1000 B
31 lines
1000 B
'use strict';
|
|
|
|
if (!process.binding('config').hasIntl) {
|
|
return;
|
|
}
|
|
|
|
const normalizeEncoding = require('internal/util').normalizeEncoding;
|
|
const Buffer = require('buffer').Buffer;
|
|
|
|
const icu = process.binding('icu');
|
|
const { isUint8Array } = process.binding('util');
|
|
|
|
// Transcodes the Buffer from one encoding to another, returning a new
|
|
// Buffer instance.
|
|
exports.transcode = function transcode(source, fromEncoding, toEncoding) {
|
|
if (!isUint8Array(source))
|
|
throw new TypeError('"source" argument must be a Buffer or Uint8Array');
|
|
if (source.length === 0) return Buffer.alloc(0);
|
|
|
|
fromEncoding = normalizeEncoding(fromEncoding) || fromEncoding;
|
|
toEncoding = normalizeEncoding(toEncoding) || toEncoding;
|
|
const result = icu.transcode(source, fromEncoding, toEncoding);
|
|
if (typeof result !== 'number')
|
|
return result;
|
|
|
|
const code = icu.icuErrName(result);
|
|
const err = new Error(`Unable to transcode Buffer [${code}]`);
|
|
err.code = code;
|
|
err.errno = result;
|
|
throw err;
|
|
};
|
|
|