add newLineCharacter argument to getValue
This commit is contained in:
parent
ffaf44ec0b
commit
64f2fc4015
1 changed files with 4 additions and 4 deletions
|
|
@ -83,8 +83,8 @@ var Document = function(textOrLines) {
|
|||
/**
|
||||
* Returns all the lines in the document as a single string, joined by the new line character.
|
||||
**/
|
||||
this.getValue = function() {
|
||||
return this.getAllLines().join(this.getNewLineCharacter());
|
||||
this.getValue = function(newLineCharacter) {
|
||||
return this.getAllLines().join(newLineCharacter || this.getNewLineCharacter());
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -213,8 +213,8 @@ var Document = function(textOrLines) {
|
|||
*
|
||||
* @returns {String}
|
||||
**/
|
||||
this.getTextRange = function(range) {
|
||||
return this.getLinesForRange(range).join(this.getNewLineCharacter());
|
||||
this.getTextRange = function(range, newLineCharacter) {
|
||||
return this.getLinesForRange(range).join(newLineCharacter || this.getNewLineCharacter());
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue