Add buffer support to split node

This commit is contained in:
Nick O'Leary
2017-06-13 21:01:04 +01:00
parent d9dc171c28
commit c26852da77
3 changed files with 332 additions and 89 deletions

View File

@@ -785,5 +785,41 @@
"createfail": "failed to create file: __error__"
},
"tip": "Tip: The filename should be an absolute path, otherwise it will be relative to the working directory of the Node-RED process."
},
"split": {
"intro":"Split <code>msg.payload</code> based on type:",
"object":"<b>Object</b>",
"objectSend":"Send a message for each key/value pair",
"strBuff":"<b>String</b> / <b>Buffer</b>",
"array":"<b>Array</b>",
"splitUsing": "Split using",
"splitLength": "Fixed length of",
"stream":"Handle as a stream of messages"
},
"join":{
"mode":{
"mode":"Mode",
"auto":"automatic",
"custom":"manual"
},
"combine":"Combine each",
"create":"to create",
"type":{
"string":"a String",
"array":"an Array",
"object":"a key/value Object",
"merged":"a merged Object"
},
"using":"using",
"key":"as the key",
"joinedUsing":"joined using",
"send":"Send the message:",
"afterCount":"After a number of message parts",
"count":"count",
"subsequent":"and every subsequent message.",
"afterTimeout":"After a timeout following the first message",
"seconds":"seconds",
"complete":"After a message with the <code>msg.complete</code> property set",
"tip":"This mode assumes this node is either paired with a <i>split</i> node or the received messages will have a properly configured <code>msg.parts</code> property."
}
}