From f986a8da553b7cae5f2d1754ae163f2937503146 Mon Sep 17 00:00:00 2001 From: Fangzhou Li Date: Fri, 31 Aug 2018 03:36:12 +0800 Subject: [PATCH] remove debugger (#157) --- src/utils/warning.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/warning.js b/src/utils/warning.js index 44aef6a2..cd1041c2 100644 --- a/src/utils/warning.js +++ b/src/utils/warning.js @@ -7,7 +7,5 @@ export const warning = process.env.NODE_ENV === 'production' const message = [ '[Vue-Treeselect Warning]' ].concat(complainer()) // eslint-disable-next-line no-console console.error(...message) - // eslint-disable-next-line no-debugger - debugger } }