For a custom node definition like this
<script type="text/javascript">
RED.nodes.registerType('hello_world',{
category: 'function',
color: '#a6bbcf',
defaults: {
single: {value: "single"},
multiple: {value: [1, 2, 3, 4]}
},
inputs: 2,
....
Will the default value for the argument multiple work?
If not, what's the standard way to supply vector data to nodes?