(bindingStyle)
| 6014 | |
| 6015 | // normalize possible array / string values into Object |
| 6016 | function normalizeStyleBinding (bindingStyle) { |
| 6017 | if (Array.isArray(bindingStyle)) { |
| 6018 | return toObject(bindingStyle) |
| 6019 | } |
| 6020 | if (typeof bindingStyle === 'string') { |
| 6021 | return parseStyleText(bindingStyle) |
| 6022 | } |
| 6023 | return bindingStyle |
| 6024 | } |
| 6025 | |
| 6026 | /** |
| 6027 | * parent component style should be after child's |
no test coverage detected