mirror of
https://github.com/github/codeql.git
synced 2026-01-07 19:50:22 +01:00
15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
var connect = require('connect');
|
|
|
|
var app = connect();
|
|
|
|
app.use(function(req,res){});
|
|
|
|
function getHandler(){
|
|
return function(req, res){};
|
|
}
|
|
app.use(getHandler());
|
|
|
|
app.use(function(req,res){})
|
|
.use(function(req,res){})
|
|
.use(function(req,res){});
|