Repository URL to install this package:
|
Version:
5.0.0-rc.10 ▾
|
'use strict';
var getCookieDomain = (function () {
var hostname = window.location.hostname;
if (hostname === 'localhost') {
return hostname;
}
var domainParts = hostname.split('.'); // get the last 2 parts of a domain i.e. doodle.com
var mainDomain = domainParts.slice(domainParts.length - 2).join('.');
return ".".concat(mainDomain);
});
module.exports = getCookieDomain;
//# sourceMappingURL=getCookieDomain.js.map