mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
15 lines
406 B
JavaScript
15 lines
406 B
JavaScript
process.mixin(require("./common"));
|
|
|
|
assert.equal(14, process._byteLength("Il était tué"));
|
|
assert.equal(14, process._byteLength("Il était tué", "utf8"));
|
|
|
|
assert.equal(12, process._byteLength("Il était tué", "ascii"));
|
|
|
|
assert.equal(12, process._byteLength("Il était tué", "binary"));
|
|
|
|
assert.throws(function() {
|
|
process._byteLength();
|
|
});
|
|
assert.throws(function() {
|
|
process._byteLength(5);
|
|
}); |