Change templates to old style concat

This commit is contained in:
Moritz Hoffmann 2016-11-18 03:27:03 +01:00
parent 9cd301711b
commit 85a26af9b4

View file

@ -15,10 +15,10 @@ function BBDMX(device_id, options) {
} }
BBDMX.prototype.send_universe = function() { BBDMX.prototype.send_universe = function() {
let messageBuffer = new Buffer(`${this.universe.length} `); let messageBuffer = new Buffer(this.universe.length + ' ');
for (let i = 0; i < this.universe.length; i++) { for (let i = 0; i < this.universe.length; i++) {
const channel = new Buffer(`${this.universe[i]} `); const channel = new Buffer(this.universe[i] + ' ');
const length = channel.length + messageBuffer.length; const length = channel.length + messageBuffer.length;
messageBuffer = Buffer.concat([messageBuffer, channel], length); messageBuffer = Buffer.concat([messageBuffer, channel], length);
} }