@julusian/epoll
Version:
A low-level Node.js binding for the Linux epoll API
20 lines (14 loc) • 341 B
JavaScript
;
module.exports = (_ => {
const osType = require('os').type();
if (osType === 'Linux') {
return require("pkg-prebuilds")(
__dirname,
require("./binding-options")
);
}
console.warn(`Warning: epoll is built for Linux and not intended for usage on ${osType}.`);
return {
Epoll: {}
};
})();