Skip to content

Commit

Permalink
Fix missing semi-colon
Browse files Browse the repository at this point in the history
Signed-off-by: ferrantejake <jake.ferrante@hotmail.com>
  • Loading branch information
ferrantejake committed Dec 3, 2020
1 parent 3329dd4 commit 33012f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/datasource.js
Expand Up @@ -259,7 +259,7 @@ function tryModules(names, loader) {
try {
mod = loader(names[m]);
} catch (e) {
const notFound = e.code === 'MODULE_NOT_FOUND' && e.message
const notFound = e.code === 'MODULE_NOT_FOUND' && e.message;

if (notFound) {
debug('Module %s not found, will try another candidate.', names[m]);
Expand Down

0 comments on commit 33012f9

Please sign in to comment.