redbadger/website-honestly

View on GitHub
site/components/utils/index.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
export function getCookieValue(a) {
  if (typeof document === 'undefined') return '';

  const b = document.cookie.match('(^|;)\\s*' + a + '\\s*=\\s*([^;]+)');
  return b ? b.pop() : '';
}