Files
Webklar.com/node_modules/motion-dom/dist/es/render/dom/style-computed.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01: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 };