Pārlūkot izejas kodu

REFS DEVOPS-243 Converted to be v2.5 compatible

David Aebersold 12 gadi atpakaļ
vecāks
revīzija
9dbe87e36b
1 mainītis faili ar 0 papildinājumiem un 1 dzēšanām
  1. 0 1
      lib/pipeline/expressions/MonthExpression.js

+ 0 - 1
lib/pipeline/expressions/MonthExpression.js

@@ -28,7 +28,6 @@ proto.getOpName = function getOpName(){
 proto.evaluateInternal = function evaluateInternal(vars){
 	this.checkArgCount(1);
 	var date = this.operands[0].evaluateInternal(vars);
-	console.log("test", date.getUTCMonth() );
 	return date.getUTCMonth();
 };