Javascript – how to cancel subscription to window.cookieStore.addEventListener('change', ) in angular service
I have created an angular service which can listen to cookie changes by leveraging the CookieStore Api. My current code looks as follows: type CookieChangeType = { name: string, value: string, expires: Date, domain: string, } interface CookieChangeEvent extends Event…