jam-cloud/jam-ui/node_modules/progressbar.js/test/test-utils.js

9 lines
228 B
JavaScript

function getComputedStyle(element, property) {
var computedStyle = window.getComputedStyle(element, null);
return computedStyle.getPropertyValue(property);
}
module.exports = {
getComputedStyle: getComputedStyle
};