utm_form icon indicating copy to clipboard operation
utm_form copied to clipboard

string' of 'escape' is deprecated.ts(6387) lib.es5.d.ts(88, 4):

Open jimbolo opened this issue 1 year ago • 0 comments

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

jimbolo avatar Sep 21 '23 00:09 jimbolo