1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 07:13:15 +00:00

Remove debugging code

This commit is contained in:
jeremy@jermolene.com 2022-08-31 09:17:06 +01:00
parent 3f68b13699
commit 4a23bc5c40
2 changed files with 0 additions and 4 deletions

View File

@ -207,9 +207,6 @@ function makeNumericBinaryOperator(fnCalc) {
var result = [],
numOperand = $tw.utils.parseNumber(operator.operand);
source(function(tiddler,title) {
if(typeof title !== "string") {
console.log("YES!")
}
result.push(fnCalc($tw.utils.parseNumber(title),numOperand));
});
return result;

View File

@ -1020,7 +1020,6 @@ exports.filterItemToObject = function(value,options) {
case "undefined":
return defaultValue;
case "object":
console.log("Got an object!")
return value;
case "boolean":
return value;