(styleValue)
| 281 | return extend(DEFAULT_PROJECTION_OPTIONS, projectorOptions); |
| 282 | }; |
| 283 | var checkStyleValue = function (styleValue) { |
| 284 | if (typeof styleValue !== 'string') { |
| 285 | throw new Error('Style values must be strings'); |
| 286 | } |
| 287 | }; |
| 288 | var setProperties = function (domNode, properties, projectionOptions) { |
| 289 | if (!properties) { |
| 290 | return; |
no outgoing calls
no test coverage detected