darkwire.io/client/src/api/generator.js
2023-12-28 16:51:17 -08:00

15 lines
293 B
JavaScript

/* istanbul ignore file */
import config from './config';
export default (resourceName = '') => {
const { port, protocol, host } = config;
const resourcePath = resourceName;
if (!host) {
return `/${resourcePath}`;
}
return `${protocol}://${host}:${port}/${resourcePath}`;
};