utils.js 228 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 function getComputedStyle(element, property) { var computedStyle = window.getComputedStyle(element, null); return computedStyle.getPropertyValue(property); } module.exports = { getComputedStyle: getComputedStyle };