(node, styleTuple)
| 342 | } |
| 343 | |
| 344 | function applyInlineStyle(node, styleTuple) { |
| 345 | var prop = styleTuple[0]; |
| 346 | var value = styleTuple[1]; |
| 347 | node.style[prop] = value; |
| 348 | } |
| 349 | |
| 350 | function concatWithSpace(a,b) { |
| 351 | if (!a) return b; |
no outgoing calls
no test coverage detected