Update packages/node_modules/@node-red/nodes/core/sequence/17-split.js

This commit is contained in:
Ben Hardill
2025-08-20 18:45:26 +01:00
committed by GitHub
parent 22a3f47060
commit b7cef0bce7

View File

@@ -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) {