function normalizedHomeUrl()

in src/service-resources/service-resources.js [3:5]


function normalizedHomeUrl(homeUrl) {
  return homeUrl.charAt(homeUrl.length - 1) === '/' ? homeUrl : `${homeUrl}/`;
}