Hi I am working with JsCookies it is working good but I am facing a problem
Whenever I store a short string in the cookies, it is working fine but the drawback is i am not able to store long strings in cookies
for example
This is working fine = Cookies.set('Coo', 'string', { expires: 1 })
But facing problem when ever i am trying to store stringified JSON data(large string)
Cookies.set('foo', JSON.stringify(result))
Please help