mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
exports.index = function (req, res, next) {
|
|
var q = req.query.q;
|
|
q = encodeURIComponent(q);
|
|
res.redirect('https://www.google.com.hk/search?q=site:cnodejs.org+' + q);
|
|
};
|