FezVrasta/popper.js

View on GitHub
website/lib/utils/remToPx.js

Summary

Maintainability
A
0 mins
Test Coverage
export function remToPx(value) {
  if (typeof document === 'undefined') {
    return value * 16;
  }

  return (
    value *
    parseFloat(
      getComputedStyle(document.documentElement).fontSize,
    )
  );
}