Sign in
appsheet-third-party
/
jquery
/
refs/heads/main
/
.
/
test
/
data
/
support
/
getComputedSupport.js
blob: ce3f118eaf8b30794ec0a7ac24cf93453f80b9e3 [
file
] [
log
] [
blame
] [
edit
]
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
;
}