function getCategoryUrl()

in process_api/cartridges/app_storefront_custom/cartridge/models/categories.js [27:31]


function getCategoryUrl(category) {
    return category.custom && 'alternativeUrl' in category.custom && category.custom.alternativeUrl
        ? (category.custom.alternativeUrl.toString()).replace(/&/g, '&')
        : URLUtils.url('Search-Show', 'cgid', category.getID()).toString();
}