mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
let express = require('express');
|
|
let _ = require('lodash');
|
|
|
|
let app = express();
|
|
|
|
app.get('/hello', function(req, res) {
|
|
_.merge({}, req.query.foo); // OK
|
|
});
|