Skip to content

Instantly share code, notes, and snippets.

@aniston
Created March 23, 2018 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniston/67b324e2454280a2868b5430bd37d09e to your computer and use it in GitHub Desktop.
Save aniston/67b324e2454280a2868b5430bd37d09e to your computer and use it in GitHub Desktop.
NodeRed_TimeInHHmmFormat
var now = (new Date()).toTimeString().slice(0,5);
if (msg.payload === now) {
return msg;
}
return null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment