1'use strict'; 2 3function start(timeout) { 4 if (!timeout) { 5 throw new Error('params is invalid'); 6 } 7 __native.WDG.start(timeout); 8} 9 10function feed() { 11 __native.WDG.feed(); 12} 13 14function stop() { 15 __native.WDG.stop(); 16} 17 18module.exports = { 19 start, 20 feed, 21 stop 22}