Skip to content
Snippets Groups Projects
Commit d69a6f0f authored by syuilo's avatar syuilo
Browse files

Refactor: Improve readability

parent 5ceb5b6a
No related branches found
No related tags found
No related merge requests found
import * as url from 'url';
import * as URL from 'url';
import * as express from 'express';
import * as request from 'request';
module.exports = (req: express.Request, res: express.Response) => {
const _url = req.params.url;
const url = req.params.url;
if (!_url) {
if (!url) {
return;
}
request({
url: _url + (url.parse(req.url, true).search || ''),
url: url + (URL.parse(req.url, true).search || ''),
encoding: null
}, (err, response, content) => {
if (err) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment