/* 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}`; };