UNPKG

289 BJavaScriptView Raw
1export const endPoints = {
2 blindCreds: 'api/socket/credentials',
3 socket: 'api/socket/get',
4}
5
6export function parameters() {
7 var res = [];
8 for (var i = 0; i < arguments.length; i++) {
9 res.push(arguments[i]);
10 }
11 return res.length ? '/' + res.join('/') : '';
12}
\No newline at end of file