(css)
| 191 | } |
| 192 | |
| 193 | function cssToStyle(css) { |
| 194 | try { |
| 195 | if (isString(css)) { |
| 196 | return toNativeStyle(cssToRuntime(css).default); |
| 197 | } |
| 198 | if (css.default) { |
| 199 | return toNativeStyle(normalizeStyle(css.default)); |
| 200 | } |
| 201 | return toNativeStyle(normalizeStyle(css)); |
| 202 | } catch (e) { |
| 203 | // do nothing |
| 204 | } |
| 205 | return {}; |
| 206 | } |
| 207 | |
| 208 | export { |
| 209 | hyphenate, |
nothing calls this directly
no test coverage detected
searching dependent graphs…