(type, element)
| 541 | } |
| 542 | |
| 543 | function unrecognisedStyleWarning(type, element) { |
| 544 | return results.warning( |
| 545 | "Unrecognised " + type + " style: '" + element.styleName + "'" + |
| 546 | " (Style ID: " + element.styleId + ")" |
| 547 | ); |
| 548 | } |
| 549 | |
| 550 | function flatMap(values, func) { |
| 551 | return _.flatten(values.map(func), true); |
no outgoing calls
no test coverage detected