e -> error

This commit is contained in:
Kevin Sawicki 2016-01-19 15:11:55 -08:00
parent b1f679ff6d
commit 16b4b58de1
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ process.atomBinding = function(name) {
try {
return process.binding("atom_" + process.type + "_" + name);
} catch (error) {
if (/No such module/.test(e.message)) {
if (/No such module/.test(error.message)) {
return process.binding("atom_common_" + name);
}
}