spaceout/front_end/node_modules/dom-helpers/esm/getComputedStyle.js
2020-12-12 10:25:30 -05:00

4 lines
172 B
JavaScript

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