Gazebo_simulation-Frontend/node_modules/dom-helpers/esm/getComputedStyle.js

4 lines
172 B
JavaScript
Raw Normal View History

2020-12-21 11:29:31 -04:00
import ownerWindow from './ownerWindow';
export default function getComputedStyle(node, psuedoElement) {
return ownerWindow(node).getComputedStyle(node, psuedoElement);
}