mirror of https://github.com/node-red/node-red.git
Update packages/node_modules/@node-red/nodes/core/sequence/17-split.js
parent
22a3f47060
commit
b7cef0bce7
|
|
@ -146,7 +146,7 @@ module.exports = function(RED) {
|
|||
var pos = 0;
|
||||
var data = value;
|
||||
msg.parts.len = node.arraySplt;
|
||||
const newmsg = RED.utils.cloneMessge(msg)
|
||||
const newmsg = RED.utils.cloneMessge(msg)
|
||||
for (var i=0; i<count; i++) {
|
||||
var m = data.slice(pos,pos+node.arraySplt);
|
||||
if (node.arraySplt === 1) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue