(node, styleTuple)
| 371 | } |
| 372 | |
| 373 | function applyInlineStyle(node, styleTuple) { |
| 374 | var prop = styleTuple[0]; |
| 375 | var value = styleTuple[1]; |
| 376 | node.style[prop] = value; |
| 377 | } |
| 378 | |
| 379 | function concatWithSpace(a,b) { |
| 380 | if (!a) return b; |
no outgoing calls
no test coverage detected