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

pull/5252/head
Ben Hardill 2025-08-20 18:45:26 +01:00 committed by GitHub
parent 22a3f47060
commit b7cef0bce7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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