For anyone needing it, you can use
var fullreset = reset;
before the "function reset()" line to preserve the reset function. Then just call fullreset() to reset your espruino. EDIT: Make that:
if(!fullreset) {var fullreset = reset}
:S Managed to overwrite fullreset.
@the1laz 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.
For anyone needing it, you can use
before the "function reset()" line to preserve the reset function. Then just call fullreset() to reset your espruino.
EDIT: Make that:
:S Managed to overwrite fullreset.