UNPKG

@tbowmo/node-red-small-timer

Version:

Small timer node for Node-RED with support for sunrise, sunset etc. timers

9 lines (8 loc) 244 B
"use strict"; module.exports = (RED) => { RED.nodes.registerType('position', function position(props) { RED.nodes.createNode(this, props); this.latitude = props.latitude; this.longitude = props.longitude; }); };