You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
245 B
JavaScript
6 lines
245 B
JavaScript
7 months ago
|
if (typeof process.addon === 'function') { // if the platform supports native resolving prefer that
|
||
|
module.exports = process.addon.bind(process)
|
||
|
} else { // else use the runtime version here
|
||
|
module.exports = require('./node-gyp-build.js')
|
||
|
}
|