mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Expose context.keys within Function node
This commit is contained in:
parent
6102a31a31
commit
f7bb4a7d60
@ -111,6 +111,9 @@ module.exports = function(RED) {
|
|||||||
get: function() {
|
get: function() {
|
||||||
return node.context().get.apply(node,arguments);
|
return node.context().get.apply(node,arguments);
|
||||||
},
|
},
|
||||||
|
keys: function() {
|
||||||
|
return node.context().keys.apply(node,arguments);
|
||||||
|
},
|
||||||
get global() {
|
get global() {
|
||||||
return node.context().global;
|
return node.context().global;
|
||||||
},
|
},
|
||||||
@ -124,6 +127,9 @@ module.exports = function(RED) {
|
|||||||
},
|
},
|
||||||
get: function() {
|
get: function() {
|
||||||
return node.context().flow.get.apply(node,arguments);
|
return node.context().flow.get.apply(node,arguments);
|
||||||
|
},
|
||||||
|
keys: function() {
|
||||||
|
return node.context().flow.keys.apply(node,arguments);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
global: {
|
global: {
|
||||||
@ -132,6 +138,9 @@ module.exports = function(RED) {
|
|||||||
},
|
},
|
||||||
get: function() {
|
get: function() {
|
||||||
return node.context().global.get.apply(node,arguments);
|
return node.context().global.get.apply(node,arguments);
|
||||||
|
},
|
||||||
|
keys: function() {
|
||||||
|
return node.context().global.keys.apply(node,arguments);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setTimeout: function () {
|
setTimeout: function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user