seitime-frappe/realtime/utils.js
2023-07-01 12:43:47 +05:30

10 lines
144 B
JavaScript

function get_url(socket, path) {
if (!path) {
path = "";
}
return socket.request.headers.origin + path;
}
module.exports = {
get_url,
};