Remove debugging code

This commit is contained in:
Jermolene 2015-02-09 19:28:48 +00:00
parent 2585f8932c
commit 0c4fe6b602

View file

@ -20,7 +20,6 @@ exports.params = [
exports.run = function(cond, then, elze) {
then = then || "";
elze = elze || "";
console.log('Condition:', cond);
return cond ? then : elze;
};