diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-02-22 22:56:41 +0000 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-02-23 22:39:22 +0000 |
commit | 5912a13ccb48313da191741931409a11b217d306 (patch) | |
tree | 15ac7a8f5652b117ccfefb6ff4d1ba96f7605a17 /examples | |
parent | 9770f779663ead9fad3ec79e3aff4becb1b44dee (diff) |
removed global variable pollution
Diffstat (limited to 'examples')
-rw-r--r-- | examples/jarvis.js | 4 |
1 files changed, 2 insertions, 2 deletions
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); |