remove extra logging

This commit is contained in:
Derek Schuff 2017-12-15 13:23:12 -08:00
parent 4b606b59d4
commit 190dffd141

View File

@ -34,8 +34,6 @@ if (typeof process === 'object' && typeof require === 'function') { // This is n
const nodePath = require('path');
var read = function(file_path) {
filename = nodePath['normalize'](file_path);
console.log(file_path);
console.log(filename);
return nodeFS['readFileSync'](filename);
}
var print = console.log;