All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.dom-utils.getComputedStyle.js.flow Maven / Gradle / Ivy

There is a newer version: 2.11.8
Show newest version
// @flow
import getWindow from './getWindow';

export default function getComputedStyle(
  element: Element
): CSSStyleDeclaration {
  return getWindow(element).getComputedStyle(element);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy