Dear developer,
When I use Cookies.get() method, I passing a undefined variable as a parameter into get method,
bug returns all cookies,
I think, Cookie.get() method should checking the arguments length, if arguments.length > 0, this method shouldn't returns all the cookies, returns undefined would be better.
Test Case:
console.log(Cookies.get(), Cookies.get(undefined), Cookies.get(null))
output: {}, {}, {}
expect
console.log(Cookies.get(), Cookies.get(undefined), Cookies.get(null))
output: {}, undefined, undefined