Great - you know you can also do stuff like:
(function() { var _setWatch = setWatch; setWatch = function(...) { _setWatch(...); } })()
To fix up the existing setWatch implementation to how you want it. Any modules should then use your new setWatch.
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Great - you know you can also do stuff like:
To fix up the existing setWatch implementation to how you want it. Any modules should then use your new setWatch.