Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/install/js/sale/checkout/lib/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/install/js/sale/checkout/lib/src/url.js

import { Uri } from 'main.core';

export class Url
{
	static getCurrentUrl()
	{
		return window.location.protocol + "//" + window.location.hostname + (window.location.port != '' ? ':' + window.location.port : '') +
			window.location.pathname + window.location.search;
	}
	
	static addLinkParam(link, name, value)
	{
		if(!link.length)
		{
			return '?' + name + '=' + value;
		}
		link = Uri.removeParam(link, name);
		if(link.indexOf('?') != -1)
		{
			return link + '&' + name + '=' + value;
		}
		return link + '?' + name + '=' + value;
	}
}