Tests: revert concurrency group change
[jquery.git] / test / data / support / getComputedSupport.js
blobce3f118eaf8b30794ec0a7ac24cf93453f80b9e3
1 function getComputedSupport( support ) {
2         var prop,
3                 result = {};
5         for ( prop in support ) {
6                 if ( typeof support[ prop ] === "function" ) {
7                         result[ prop ] = support[ prop ]();
8                 } else {
9                         result[ prop ] = support[ prop ];
10                 }
11         }
13         return result;