8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
|
module.exports = (() => {
|
||
|
try {
|
||
|
return require(`./uws_${process.platform}_${process.versions.modules}.node`);
|
||
|
} catch (e) {
|
||
|
throw new Error('This version of µWS is not compatible with your Node.js build.');
|
||
|
}
|
||
|
})();
|