(style, char)
| 280 | } |
| 281 | |
| 282 | function styleIncludes(style, char) { |
| 283 | if(style === 'all' || style === null) return true; |
| 284 | return (style.indexOf(char) > -1); |
| 285 | } |
| 286 | |
| 287 | function mapValue(style, value) { |
| 288 | if(style === null) return value; |
no outgoing calls
no test coverage detected
searching dependent graphs…