Fix style nits.

This commit is contained in:
John-David Dalton
2016-01-26 08:19:17 -08:00
parent 7a8ef7aeb7
commit df849e8698
7 changed files with 30 additions and 29 deletions

View File

@@ -43,11 +43,11 @@
if (!amd) {
try {
result = require('fs').realpathSync(result);
} catch(e) {}
} catch (e) {}
try {
result = require.resolve(result);
} catch(e) {}
} catch (e) {}
}
return result;
}());