Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit a4784f5

Browse files
committed
Remove console logs
1 parent 26b90b4 commit a4784f5

File tree

1 file changed

+0
-3
lines changed
  • src/extensions/default/InAppNotifications

1 file changed

+0
-3
lines changed

src/extensions/default/InAppNotifications/main.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ define(function (require, exports, module) {
215215
function _checkExtensions(filters) {
216216
//if no property called extensions then it's a universal notification
217217
if (filters.extensions === undefined) {
218-
console.log("undefined");
219218
return true;
220219
}
221220

@@ -226,12 +225,10 @@ define(function (require, exports, module) {
226225
});
227226

228227
if (!filters.extensions) {
229-
console.log("null");
230228
//if property called extensions exists but has a falsy value
231229
//then number of user extensions must be zero
232230
allExtnsMatched = userExtensionKeys.length === 0;
233231
} else if (filters.extensions.length === 0) {
234-
console.log('[]');
235232
//if property called extensions exists but is an empty array
236233
//then number of user extensions must greater than zero
237234
allExtnsMatched = userExtensionKeys.length > 0;

0 commit comments

Comments
 (0)