17 lines
319 B
JavaScript
17 lines
319 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
||
|
function noop() {}
|
||
|
function bool() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
exports.connect = noop;
|
||
|
exports.createConnection = noop;
|
||
|
exports.createServer = noop;
|
||
|
exports.isIP = bool;
|
||
|
exports.isIPv4 = bool;
|
||
|
exports.isIPv6 = bool;
|
||
|
//# sourceMappingURL=net.js.map
|