mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
|
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;
|
||
|
}
|