utm_form
utm_form copied to clipboard
string' of 'escape' is deprecated.ts(6387) lib.es5.d.ts(88, 4):
should we replace the:
document.cookie = this._cookieNamePrefix + name + '=' + escape(value) + cookieExpire + cookiePath + cookieDomain + cookieSecure;
with:
document.cookie = `${this._cookieNamePrefix}${name}=${encodeURIComponent(value)}${cookieExpire}${cookiePath}${cookieDomain}${cookieSecure}`;