index.js 245 B

12345
  1. if (typeof process.addon === 'function') { // if the platform supports native resolving prefer that
  2. module.exports = process.addon.bind(process)
  3. } else { // else use the runtime version here
  4. module.exports = require('./node-gyp-build.js')
  5. }