Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function resolvePath (nextPath) {
try {
return isRelative(nextPath) ?
path.resolve(remote.app.getPath('exe'), nextPath)
: nextPath;
// Pokemon LUL
} catch (e) {
return false;
}
}