4 lines
172 B
JavaScript
4 lines
172 B
JavaScript
import ownerWindow from './ownerWindow';
|
|
export default function getComputedStyle(node, psuedoElement) {
|
|
return ownerWindow(node).getComputedStyle(node, psuedoElement);
|
|
} |