@@ -20,8 +20,7 @@ const findItemsByKeywords = function (options) {
2020 const url = urlObject . buildSearchUrl ( this . options ) ;
2121 return getRequest ( url ) . then ( ( data ) => {
2222 return JSON . parse ( data ) . findItemsByKeywordsResponse ;
23-
24- } , console . error
23+ } , console . error // eslint-disable-line no-console
2524 ) ;
2625} ;
2726
@@ -33,8 +32,7 @@ const findItemsByCategory = function (categoryID) {
3332 const url = urlObject . buildSearchUrl ( this . options ) ;
3433 return getRequest ( url ) . then ( ( data ) => {
3534 return JSON . parse ( data ) . findItemsByCategoryResponse ;
36-
37- } , console . error
35+ } , console . error // eslint-disable-line no-console
3836 ) ;
3937} ;
4038
@@ -55,7 +53,7 @@ const findCompletedItems = function (options) {
5553 return getRequest ( url ) . then ( ( data ) => {
5654 return JSON . parse ( data ) . findCompletedItemsResponse ;
5755
58- } , console . error
56+ } , console . error // eslint-disable-line no-console
5957 ) ;
6058} ;
6159
@@ -75,7 +73,7 @@ const findItemsAdvanced = function (options) {
7573 const url = urlObject . buildSearchUrl ( this . options ) ;
7674 return getRequest ( url ) . then ( ( data ) => {
7775 return JSON . parse ( data ) . findItemsAdvancedResponse ;
78- } , console . error
76+ } , console . error // eslint-disable-line no-console
7977 ) ;
8078} ;
8179
@@ -85,7 +83,7 @@ const getVersion = function () {
8583 const url = urlObject . buildSearchUrl ( this . options ) ;
8684 return getRequest ( url ) . then ( ( data ) => {
8785 return JSON . parse ( data ) . getVersionResponse [ 0 ] ;
88- } , console . error
86+ } , console . error // eslint-disable-line no-console
8987 ) ;
9088} ;
9189
@@ -104,7 +102,7 @@ const findItemsByProduct = function (options) {
104102 return getRequest ( url ) . then ( ( data ) => {
105103 return JSON . parse ( data ) . findItemsByProductResponse ;
106104
107- } , console . error
105+ } , console . error // eslint-disable-line no-console
108106 ) ;
109107} ;
110108
0 commit comments