* Supports * * @param {string} match * @param {string} group * @return {string}
(match, group)
| 23311 | * @return {string} |
| 23312 | */ |
| 23313 | function supports (match, group) { |
| 23314 | var out = property(group, group.charCodeAt(0), group.charCodeAt(1), group.charCodeAt(2)) |
| 23315 | |
| 23316 | return out !== group+';' ? out.replace(propertyptn, ' or ($1)').substring(4) : '('+group+')' |
| 23317 | } |
| 23318 | |
| 23319 | /** |
| 23320 | * Animation |
nothing calls this directly
no test coverage detected