UNPKG

@stackoverfloweth/vue-compositions

Version:

A collection of reusable vue compositions.

8 lines 262 B
import { globalExists } from '../utilities/global'; export function getWindowComputedStyle(element) { if (!globalExists('window') || !element) { return undefined; } return window.getComputedStyle(element); } //# sourceMappingURL=window.js.map