(styleMap)
| 2412 | } |
| 2413 | |
| 2414 | function parseStyleMap(styleMap) { |
| 2415 | return Result.combine((styleMap || []).map(readStyle)) |
| 2416 | .map(function(styleMap) { |
| 2417 | return styleMap.filter(function(styleMapping) { |
| 2418 | return !!styleMapping; |
| 2419 | }); |
| 2420 | }); |
| 2421 | } |
| 2422 | |
| 2423 | |
| 2424 | function extractRawText(input) { |
no outgoing calls
no test coverage detected