in src/main/js/bmaputil.js [436:446]
function Cookie(name, value, expires, path, domain, secure) {
if (!(this instanceof Cookie)) {
return new Cookie(name, value, expires, path, domain, secure);
}
this.name = name;
this.value = value;
this.expires = expires;
this.path = path;
this.domain = domain;
this.secure = secure;
}