From 1d3d179712f4a221d62c51c588b6cb49a1aece9c Mon Sep 17 00:00:00 2001 From: "Clarence \"Sparr\" Risher" Date: Fri, 21 Oct 2016 09:04:01 -0700 Subject: [PATCH] comment out label in wrapped function toString --- screeps-profiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screeps-profiler.js b/screeps-profiler.js index 6855e3a..b98a432 100644 --- a/screeps-profiler.js +++ b/screeps-profiler.js @@ -97,7 +97,7 @@ function wrapFunction(name, originalFunction) { }; wrappedFunction.toString = function() { - return "screeps-profiler wrapped function:\n" + + return "// screeps-profiler wrapped function:\n" + originalFunction.toString(); };