Skip to content

Instantly share code, notes, and snippets.

@bernardobelchior
Created April 14, 2019 16:46
Show Gist options
  • Save bernardobelchior/a04ffb3792a859366337d22e3712adf4 to your computer and use it in GitHub Desktop.
Save bernardobelchior/a04ffb3792a859366337d22e3712adf4 to your computer and use it in GitHub Desktop.
module.exports = function(RED) {
function LowerCaseNode(config) {
RED.nodes.createNode(this,config);
var node = this;
node.on('input', function(msg) {
msg.payload = msg.payload.toLowerCase();
node.send(msg);
});
}
RED.nodes.registerType("lower-case", LowerCaseNode)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment