Sign in
appsheet-third-party
/
jquery
/
1d60e5afef1b0287e855686a4d524d8cf3aa61ee
/
.
/
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
;
}