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;