Skip to content

Commit dfbd387

Browse files
committed
Fixed linter errors
1 parent 095b0d6 commit dfbd387

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/resource-mapper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ class ResourceMapper {
6969
const folder = fullPath.substr(0, fullPath.length - filename.length)
7070

7171
// Find a file with the same name (minus the dollar extension)
72-
let match = searchIndex ? await this._getMatchingFile(folder, filename, isIndex) : '';
72+
let match = searchIndex ? await this._getMatchingFile(folder, filename, isIndex) : ''
7373
// Do not match with html if the content type won't allow it
7474
if (!(contentType.includes('text/html') || contentType.includes('*/*'))) {
75-
match = '';
75+
match = ''
7676
}
7777
if (match === undefined) {
7878
// Error if no match was found,

0 commit comments

Comments
 (0)