UNPKG

@phantomstudios/ft-lib

Version:

A collection of Javascript UI & tracking utils for FT sites

10 lines (9 loc) 223 B
export function getValueFromCookie(matcher) { if (typeof document !== "undefined") { return document.cookie.match(matcher) && RegExp.$1 !== "" && RegExp.$1 !== "null" ? RegExp.$1 : null; } }