Skip to content

Instantly share code, notes, and snippets.

@bernardobelchior
Last active April 14, 2019 22:09
Show Gist options
  • Save bernardobelchior/68987e79926286518defed792b99a9be to your computer and use it in GitHub Desktop.
Save bernardobelchior/68987e79926286518defed792b99a9be to your computer and use it in GitHub Desktop.
module.exports = function (RED: Red) {
class LowerCaseNode {
constructor(config: NodeProperties) {
RED.nodes.createNode(this, config);
this.on('input', function(msg: any) {
msg.payload = msg.payload.toLowerCase();
this.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