* Returns all the lines in the document as a single string, joined by the new line character. * @returns {String}
()
| 53 | * @returns {String} |
| 54 | **/ |
| 55 | getValue() { |
| 56 | return this.getAllLines().join(this.getNewLineCharacter()); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Creates a new `Anchor` to define a floating point in the document. |
nothing calls this directly
no test coverage detected