Index: graphspell-js/helpers.js ================================================================== --- graphspell-js/helpers.js +++ graphspell-js/helpers.js @@ -10,14 +10,16 @@ let funcOutput = null; var helpers = { setLogOutput: function (func) { + // probably obsolete now, as console.log seems to work everywhere (at last!) funcOutput = func; }, echo: function (obj) { + // probably obsolete now, as console.log seems to work everywhere (at last!) if (funcOutput !== null) { funcOutput(obj); } else { console.log(obj); }