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.
16 lines
408 B
16 lines
408 B
15 years ago
|
process.mixin(require("../common"));
|
||
15 years ago
|
|
||
15 years ago
|
assert.equal(14, process._byteLength("Il était tué"));
|
||
|
assert.equal(14, process._byteLength("Il était tué", "utf8"));
|
||
15 years ago
|
|
||
15 years ago
|
assert.equal(12, process._byteLength("Il était tué", "ascii"));
|
||
15 years ago
|
|
||
15 years ago
|
assert.equal(12, process._byteLength("Il était tué", "binary"));
|
||
15 years ago
|
|
||
15 years ago
|
assert.throws(function() {
|
||
|
process._byteLength();
|
||
|
});
|
||
|
assert.throws(function() {
|
||
|
process._byteLength(5);
|
||
15 years ago
|
});
|