Files
menui_backend/node_modules/dom-helpers/esm/getComputedStyle.js
2020-07-15 19:54:48 +02:00

4 lines
172 B
JavaScript

import ownerWindow from './ownerWindow';
export default function getComputedStyle(node, psuedoElement) {
return ownerWindow(node).getComputedStyle(node, psuedoElement);
}