repo.or.cz
/
jquery.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Tests: revert concurrency group change
[jquery.git]
/
test
/
data
/
support
/
getComputedSupport.js
blob
ce3f118eaf8b30794ec0a7ac24cf93453f80b9e3
1
function getComputedSupport( support ) {
2
var prop,
3
result = {};
4
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
}
12
13
return result;
14
}