Skip to content

Commit caf3944

Browse files
muz3mcollina
authored andcommitted
change new buffer to buffer.alloc (#64)
1 parent 371379d commit caf3944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ function genHeader (type) {
128128
return [0, 1, 2].map(function (qos) {
129129
return [0, 1].map(function (dup) {
130130
return [0, 1].map(function (retain) {
131-
var buf = new Buffer(1)
131+
var buf = Buffer.alloc(1)
132132
buf.writeUInt8(
133133
protocol.codes[type] << protocol.CMD_SHIFT |
134134
(dup ? protocol.DUP_MASK : 0) |

0 commit comments

Comments
 (0)