From 404ec3c998ec443bd55b41b172e85b4aab019ab9 Mon Sep 17 00:00:00 2001 From: Naomi Seyfer Date: Fri, 22 Feb 2013 16:21:06 -0800 Subject: [PATCH] accidentally had left in a debugger call --- packages/minimongo/selector.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/minimongo/selector.js b/packages/minimongo/selector.js index ddb05ead0f..a1587c5199 100644 --- a/packages/minimongo/selector.js +++ b/packages/minimongo/selector.js @@ -246,8 +246,6 @@ var VALUE_OPERATORS = { // Definitely not _anyIfArrayPlus: $type: 4 only matches arrays that have // arrays as elements according to the Mongo docs. return _anyIfArray(value, function (x) { - if (operand === 5) - debugger; return LocalCollection._f._type(x) === operand; }); };