return utf8ToBytes(str).length;
case 'ascii':
+ case 'binary':
return str.length;
case 'base64':
return SlowBuffer._charsWritten = blitBuffer(asciiToBytes(string), this, offset, length);
};
+SlowBuffer.prototype.binaryWrite = SlowBuffer.prototype.asciiWrite;
+
SlowBuffer.prototype.base64Write = function (string, offset, length) {
var bytes, pos;
return SlowBuffer._charsWritten = blitBuffer(base64ToBytes(string), this, offset, length);
return ret;
}
+SlowBuffer.prototype.binarySlice = SlowBuffer.prototype.asciiSlice;
+
SlowBuffer.prototype.inspect = function() {
var out = [],
len = this.length;
t.end();
});
+test('utf8 to utf8', function (t) {
+ t.plan(1);
+ t.equal(
+ new buffer.Buffer("öäüõÖÄÜÕ", "utf8").toString("utf8"),
+ new Buffer("öäüõÖÄÜÕ", "utf8").toString("utf8")
+ );
+ t.end();
+});
+
test('ascii buffer to base64', function (t) {
t.plan(1);
t.equal(
);
t.end();
});
+/*
+test('utf8 to ascii', function (t) {
+ t.plan(1);
+ t.equal(
+ new buffer.Buffer("öäüõÖÄÜÕ", "utf8").toString("ascii"),
+ new Buffer("öäüõÖÄÜÕ", "utf8").toString("ascii")
+ );
+ t.end();
+});
+*/
+
+test('base64 buffer to binary', function (t) {
+ t.plan(1);
+ t.equal(
+ new buffer.Buffer("MTIzNDU2IUAjJCVe", "base64").toString("binary"),
+ new Buffer("MTIzNDU2IUAjJCVe", "base64").toString("binary")
+ );
+ t.end();
+});
+
+test('hex buffer to binary', function (t) {
+ t.plan(1);
+ t.equal(
+ new buffer.Buffer("31323334353621402324255e", "hex").toString("binary"),
+ new Buffer("31323334353621402324255e", "hex").toString("binary")
+ );
+ t.end();
+});
+
+test('utf8 to binary', function (t) {
+ t.plan(1);
+ t.equal(
+ new buffer.Buffer("öäüõÖÄÜÕ", "utf8").toString("binary"),
+ new Buffer("öäüõÖÄÜÕ", "utf8").toString("binary")
+ );
+ t.end();
+});
test("hex of write{Uint,Int}{8,16,32}{LE,BE}", function (t) {
t.plan(2*(2*2*2+2));