(node, styleTuple)
| 351 | } |
| 352 | |
| 353 | function applyInlineStyle(node, styleTuple) { |
| 354 | var prop = styleTuple[0]; |
| 355 | var value = styleTuple[1]; |
| 356 | node.style[prop] = value; |
| 357 | } |
| 358 | |
| 359 | function concatWithSpace(a,b) { |
| 360 | if (!a) return b; |
no outgoing calls
no test coverage detected