From 66be570029561fea21df9d8bbc260b1b0af5ee3d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 8 Feb 2021 15:16:03 +0100 Subject: [PATCH] Stringify output --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7bce028..1f0c700 100644 --- a/index.js +++ b/index.js @@ -39,7 +39,7 @@ async function run () { forkCount: repoStats.repository.forkCount } - console.log(result) + console.log(JSON.stringify(result)) } run()