From f66e0649601aae5ed16b29b67eb65c2695ad5b2a Mon Sep 17 00:00:00 2001 From: Christopher Currie Date: Sun, 12 May 2019 19:43:59 -0700 Subject: [PATCH] Remove log messages --- src/ExportMap.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ExportMap.js b/src/ExportMap.js index 949df3f19..fb242b564 100644 --- a/src/ExportMap.js +++ b/src/ExportMap.js @@ -517,8 +517,6 @@ ExportMap.parse = function (path, content, context) { const moduleDecl = ast.body.find((bodyNode) => bodyNode.type === 'TSModuleDeclaration' && bodyNode.id.name === n.expression.name ) - log(moduleDecl) - log(moduleDecl.body) if (moduleDecl && moduleDecl.body && moduleDecl.body.body) { moduleDecl.body.body.forEach((moduleBlockNode) => { // Export-assignment exports all members in the namespace, explicitly exported or not.