Skip to content

Commit 7cdfe83

Browse files
author
Hans Kristian Flaatten
committed
fix(eslint): use template strings for string concatenation
1 parent 77d0586 commit 7cdfe83

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

index.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports.conf = {
1010

1111
module.exports._requestDefaults = function reqestDefaults() {
1212
return require('request').defaults({
13-
baseUrl: 'http://' + module.exports.conf.API_ENV + '.nasjonalturbase.no/',
13+
baseUrl: `http://${module.exports.conf.API_ENV}.nasjonalturbase.no/`,
1414
headers: {
1515
'user-agent': module.exports.conf.USER_AGENT,
1616
},
@@ -75,34 +75,34 @@ let request = module.exports._requestDefaults();
7575

7676
module.exports[type].get = function typeGet(id, callback) {
7777
if (!callback) {
78-
return request.get({ url: encodeURIComponent(type) + '/' + id });
78+
return request.get({ url: `${encodeURIComponent(type)}/${id}` });
7979
}
8080

81-
request.get({ url: encodeURIComponent(type) + '/' + id }, callback);
81+
request.get({ url: `${encodeURIComponent(type)}/${id}` }, callback);
8282
};
8383

8484
module.exports[type].delete = function typeDelete(id, callback) {
8585
if (!callback) {
86-
return request.del({ url: encodeURIComponent(type) + '/' + id });
86+
return request.del({ url: `${encodeURIComponent(type)}/${id}` });
8787
}
8888

89-
request.del({ url: encodeURIComponent(type) + '/' + id }, callback);
89+
request.del({ url: `${encodeURIComponent(type)}/${id}` }, callback);
9090
};
9191

9292
module.exports[type].put = function typePut(id, data, callback) {
9393
if (!callback) {
94-
return request.put({ url: encodeURIComponent(type) + '/' + id, body: data });
94+
return request.put({ url: `${encodeURIComponent(type)}/${id}`, body: data });
9595
}
9696

97-
request.put({ url: encodeURIComponent(type) + '/' + id, body: data }, callback);
97+
request.put({ url: `${encodeURIComponent(type)}/${id}`, body: data }, callback);
9898
};
9999

100100
module.exports[type].patch = function typePatch(id, data, callback) {
101101
if (!callback) {
102-
return request.patch({ url: encodeURIComponent(type) + '/' + id, body: data });
102+
return request.patch({ url: `${encodeURIComponent(type)}/${id}`, body: data });
103103
}
104104

105-
request.patch({ url: encodeURIComponent(type) + '/' + id, body: data }, callback);
105+
request.patch({ url: `${encodeURIComponent(type)}/${id}`, body: data }, callback);
106106
};
107107
});
108108

@@ -143,20 +143,20 @@ module.exports.util.attribution = function navngiving(type, doc, authors, licens
143143
}
144144

145145
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>`;
147147
}
148148

149149
return prev + delim + author.navn;
150150
}, '');
151151
} else if (typeof authors === 'string') {
152152
attribution = attribution + authors;
153153
} else {
154-
attribution = attribution + 'Ukjent';
154+
attribution = `${attribution}Ukjent`;
155155
}
156156

157157
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>.`;
159159
}
160160

161-
return attribution + ` er lisensiert under ${license}.`;
161+
return `${attribution} er lisensiert under ${license}.`;
162162
};

0 commit comments

Comments
 (0)