blob: ce3f118eaf8b30794ec0a7ac24cf93453f80b9e3 [file] [log] [blame]
function getComputedSupport( support ) {
var prop,
result = {};
for ( prop in support ) {
if ( typeof support[ prop ] === "function" ) {
result[ prop ] = support[ prop ]();
} else {
result[ prop ] = support[ prop ];
}
}
return result;
}