(options: StringifyOptions = {})
| 303 | } |
| 304 | |
| 305 | stringify(options: StringifyOptions = {}): string { |
| 306 | const root = this.root(); |
| 307 | this.text = this.stringifyNode(root, options); |
| 308 | root.length = this.text.length; |
| 309 | return this.text; |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * Stringifies nested JSON sub-trees and applies the changes to the original text. |