(options)
| 3263 | exports.writer = writer; |
| 3264 | |
| 3265 | function writer(options) { |
| 3266 | options = options || {}; |
| 3267 | if (options.prettyPrint) { |
| 3268 | return prettyWriter(); |
| 3269 | } else { |
| 3270 | return simpleWriter(); |
| 3271 | } |
| 3272 | } |
| 3273 | |
| 3274 | |
| 3275 | var indentedElements = { |
nothing calls this directly
no test coverage detected