Gazebo_simulation-Frontend/node_modules/dom-helpers/esm/getComputedStyle.js
2020-12-21 10:29:31 -05:00

4 lines
172 B
JavaScript

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