From b3c124284e364b8050bfb7d74d1a0d86f5d3d180 Mon Sep 17 00:00:00 2001 From: Tyler-A Date: Thu, 23 Apr 2020 20:30:50 -0600 Subject: [PATCH] Remove log statements --- src/docs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs.ts b/src/docs.ts index 7986b27..3281dd3 100644 --- a/src/docs.ts +++ b/src/docs.ts @@ -36,8 +36,8 @@ export const ADD_TO_DOCS = (msg: msg_meta, won: bracket_result) => { ${addition_indicator}`; let docs: string = fs.readFileSync(`./docs/index.html`, `utf8`); - console.log(docs) + docs = docs.replace(``, `${docstring_to_add}`); - console.log(docs); + fs.writeFileSync(`./docs/index.html`, `${docs}`); } \ No newline at end of file