mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7053922c1a
Remove duplication of buffer tests, separate out into separate files, update and cleanup code, move to using strictEqual where possible. PR-URL: https://github.com/nodejs/node/pull/8256 Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
34 lines
470 B
JavaScript
34 lines
470 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
[ 'hex',
|
|
'utf8',
|
|
'utf-8',
|
|
'ascii',
|
|
'latin1',
|
|
'binary',
|
|
'base64',
|
|
'ucs2',
|
|
'ucs-2',
|
|
'utf16le',
|
|
'utf-16le' ].forEach((enc) => {
|
|
assert.strictEqual(Buffer.isEncoding(enc), true);
|
|
});
|
|
|
|
[ 'utf9',
|
|
'utf-7',
|
|
'Unicode-FTW',
|
|
'new gnu gun',
|
|
false,
|
|
NaN,
|
|
{},
|
|
Infinity,
|
|
[],
|
|
1,
|
|
0,
|
|
-1 ].forEach((enc) => {
|
|
assert.strictEqual(Buffer.isEncoding(enc), false);
|
|
});
|