Sign in
appsheet-third-party
/
jquery
/
c2771ef53a7bf038bc1180086568383a38c99f4e
/
.
/
test
/
data
/
support
/
getComputedSupport.js
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
;
}