'use strict';
module.exports = (_ => {
const osType = require('os').type();
if (osType === 'Linux') {
returnrequire('bindings')('epoll.node');
}
console.warn(`Warning: epoll is built for Linux and not intended for usage on ${osType}.`);
return {
Epoll: {}
};
})();