10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
function get_url(socket, path) {
|
|
if (!path) {
|
|
path = "";
|
|
}
|
|
return socket.request.headers.origin + path;
|
|
}
|
|
|
|
module.exports = {
|
|
get_url,
|
|
};
|