From 5c325a5a53f1e8775ecc31d7eb2863c01ec79548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Fri, 26 Apr 2019 15:37:34 +0200 Subject: [PATCH] Update isprime.js --- functions/isprime.js | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/isprime.js b/functions/isprime.js index 26e1887..67263a0 100644 --- a/functions/isprime.js +++ b/functions/isprime.js @@ -1,6 +1,5 @@ module.exports = { handler: (event, context) => { - console.log(event); num=event.data; if (num == 1) return "Not Prime"; num += 2;