We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66be598 commit c3c70feCopy full SHA for c3c70fe
tests/base64.js
@@ -23,10 +23,8 @@ tape.test("base64", function(test) {
23
var len2 = protobuf.util.decode64(enc, buf, 0);
24
test.equal(len2, len, "should decode '" + enc + "' to " + len + " bytes");
25
26
- if (protobuf.util.isNode) {
27
- var comp = global.Buffer.from(buf).toString("utf8");
28
- test.equal(comp, str, "should decode '" + enc + "' to '" + str + "'");
29
- }
+ if (protobuf.util.isNode && protobuf.util.Buffer)
+ test.equal(buf.toString("utf8"), str, "should decode '" + enc + "' to '" + str + "'");
30
31
var enc2 = protobuf.util.encode64(buf, 0, buf.length);
32
test.equal(enc2, enc, "should encode '" + str + "' to '" + enc + "'");
0 commit comments