Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

11 lines
285 B
JavaScript

import { isCSSVar } from './is-css-var.mjs';
function getComputedStyle(element, name) {
const computedStyle = window.getComputedStyle(element);
return isCSSVar(name)
? computedStyle.getPropertyValue(name)
: computedStyle[name];
}
export { getComputedStyle };