@@ -10,7 +10,7 @@ module.exports.conf = {
10
10
11
11
module . exports . _requestDefaults = function reqestDefaults ( ) {
12
12
return require ( 'request' ) . defaults ( {
13
- baseUrl : ' http://' + module . exports . conf . API_ENV + ' .nasjonalturbase.no/' ,
13
+ baseUrl : ` http://${ module . exports . conf . API_ENV } .nasjonalturbase.no/` ,
14
14
headers : {
15
15
'user-agent' : module . exports . conf . USER_AGENT ,
16
16
} ,
@@ -75,34 +75,34 @@ let request = module.exports._requestDefaults();
75
75
76
76
module . exports [ type ] . get = function typeGet ( id , callback ) {
77
77
if ( ! callback ) {
78
- return request . get ( { url : encodeURIComponent ( type ) + '/' + id } ) ;
78
+ return request . get ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` } ) ;
79
79
}
80
80
81
- request . get ( { url : encodeURIComponent ( type ) + '/' + id } , callback ) ;
81
+ request . get ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` } , callback ) ;
82
82
} ;
83
83
84
84
module . exports [ type ] . delete = function typeDelete ( id , callback ) {
85
85
if ( ! callback ) {
86
- return request . del ( { url : encodeURIComponent ( type ) + '/' + id } ) ;
86
+ return request . del ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` } ) ;
87
87
}
88
88
89
- request . del ( { url : encodeURIComponent ( type ) + '/' + id } , callback ) ;
89
+ request . del ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` } , callback ) ;
90
90
} ;
91
91
92
92
module . exports [ type ] . put = function typePut ( id , data , callback ) {
93
93
if ( ! callback ) {
94
- return request . put ( { url : encodeURIComponent ( type ) + '/' + id , body : data } ) ;
94
+ return request . put ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` , body : data } ) ;
95
95
}
96
96
97
- request . put ( { url : encodeURIComponent ( type ) + '/' + id , body : data } , callback ) ;
97
+ request . put ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` , body : data } , callback ) ;
98
98
} ;
99
99
100
100
module . exports [ type ] . patch = function typePatch ( id , data , callback ) {
101
101
if ( ! callback ) {
102
- return request . patch ( { url : encodeURIComponent ( type ) + '/' + id , body : data } ) ;
102
+ return request . patch ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` , body : data } ) ;
103
103
}
104
104
105
- request . patch ( { url : encodeURIComponent ( type ) + '/' + id , body : data } , callback ) ;
105
+ request . patch ( { url : ` ${ encodeURIComponent ( type ) } / ${ id } ` , body : data } , callback ) ;
106
106
} ;
107
107
} ) ;
108
108
@@ -143,20 +143,20 @@ module.exports.util.attribution = function navngiving(type, doc, authors, licens
143
143
}
144
144
145
145
if ( author . url ) {
146
- return prev + delim + ` <a href="${ author . url } ">${ author . navn } </a>`;
146
+ return ` ${ prev } ${ delim } <a href="${ author . url } ">${ author . navn } </a>`;
147
147
}
148
148
149
149
return prev + delim + author . navn ;
150
150
} , '' ) ;
151
151
} else if ( typeof authors === 'string' ) {
152
152
attribution = attribution + authors ;
153
153
} else {
154
- attribution = attribution + ' Ukjent' ;
154
+ attribution = ` ${ attribution } Ukjent` ;
155
155
}
156
156
157
157
if ( licenses . has ( license ) ) {
158
- return attribution + ` er lisensiert under <a href="${ licenses . get ( license ) } ">${ license } </a>.`;
158
+ return ` ${ attribution } er lisensiert under <a href="${ licenses . get ( license ) } ">${ license } </a>.`;
159
159
}
160
160
161
- return attribution + ` er lisensiert under ${ license } .`;
161
+ return ` ${ attribution } er lisensiert under ${ license } .`;
162
162
} ;
0 commit comments