We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c436b35 commit aa34b45Copy full SHA for aa34b45
Gruntfile.js
@@ -1,6 +1,9 @@
1
module.exports = function (grunt) {
2
grunt.initConfig({
3
shell: {
4
+ generateNode_getKeysInFlowContext: {
5
+ command: 'node bin/node-red-nodegen.js samples/get-keys-in-flow-context.js -o ./nodegen'
6
+ },
7
generateNode_handleClearInterval: {
8
command: 'node bin/node-red-nodegen.js samples/handle-clearInterval.js -o ./nodegen'
9
},
samples/get-keys-in-flow-context.js
@@ -0,0 +1,4 @@
+// name: get keys in flow context
+// outputs: 1
+msg.payload=flow.keys();
+return msg;
0 commit comments