@phantomstudios/ft-lib
Version:
A collection of Javascript UI & tracking utils for FT sites
13 lines • 409 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getValueFromCookie = getValueFromCookie;
function getValueFromCookie(matcher) {
if (typeof document !== "undefined") {
return document.cookie.match(matcher) &&
RegExp.$1 !== "" &&
RegExp.$1 !== "null"
? RegExp.$1
: null;
}
}
//# sourceMappingURL=cookies.js.map