improve error message
这个提交包含在:
父节点
2ee3c65405
当前提交
3cd1390539
@ -27,7 +27,7 @@ function LEX(obj, app) {
|
||||
}
|
||||
|
||||
obj.debug = LEX.debug;
|
||||
|
||||
|
||||
if ('function' === typeof app) {
|
||||
obj.onRequest = obj.onRequest || app;
|
||||
}
|
||||
@ -162,6 +162,10 @@ function LEX(obj, app) {
|
||||
}
|
||||
|
||||
function listen(plainPorts, tlsPorts, onListening) {
|
||||
if (plainPorts && (!Array.isArray(plainPorts) || !Array.isArray(tlsPorts))) {
|
||||
throw new Error(".listen() must be used with plain and tls port arrays, like this: `.listen([80], [443, 5001], function () {})`");
|
||||
}
|
||||
|
||||
var results = {
|
||||
plainServers: []
|
||||
, tlsServers: []
|
||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户