This commit is contained in:
Alex Hultman 2018-10-28 16:07:21 +01:00
parent 47e66cccbb
commit 100c93ffe4
5 changed files with 262 additions and 0 deletions

7
dist/uws.js vendored Normal file
View file

@ -0,0 +1,7 @@
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.');
}
})();