Browse Source

:art: Assign binding as const

Kevin Sawicki 8 years ago
parent
commit
f5a6f290bc
1 changed files with 4 additions and 2 deletions
  1. 4 2
      lib/common/init.js

+ 4 - 2
lib/common/init.js

@@ -1,11 +1,13 @@
 const timers = require('timers')
 
+const {binding} = process
+
 process.atomBinding = function (name) {
   try {
-    return process.binding('atom_' + process.type + '_' + name)
+    return binding('atom_' + process.type + '_' + name)
   } catch (error) {
     if (/No such module/.test(error.message)) {
-      return process.binding('atom_common_' + name)
+      return binding('atom_common_' + name)
     }
   }
 }