From 5912a13ccb48313da191741931409a11b217d306 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Sat, 22 Feb 2020 22:56:41 +0000 Subject: removed global variable pollution --- examples/jarvis.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/jarvis.js') diff --git a/examples/jarvis.js b/examples/jarvis.js index 4fc84a0..7268ad2 100644 --- a/examples/jarvis.js +++ b/examples/jarvis.js @@ -67,8 +67,6 @@ const notifsrc = '\ & git.hrhr.dev/ywot-clean \n\ & Try `COMMAND` today. Uptime: UPTIME. \n\ & Called: JARVISx ~SIGNATURE \n\ -& If you have any good bullet art (<100 chars),\n\ -& please send it to me at hr@hrhr.dev. \n\ '.replace('COMMAND', command).replace('SIGNATURE', sig); const notifloc = [0, 20]; var minsUp = 0; @@ -147,3 +145,5 @@ function respond(coord, send){ setTimeout(() => {limits.splice(limits.indexOf(send))}, 5*1000); limits.push(send); } + +setInterval(()=>{console.log('time ' + new Date().getTime());}, 60*1000); -- cgit