Removing global flag for replacing whitespaces
This commit is contained in:
parent
080ae79b54
commit
80aadaf74e
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@
|
|||
text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' );
|
||||
}
|
||||
else if( leadingWs > 1 ) {
|
||||
text = text.replace( new RegExp('\\n? {' + leadingWs + '}','g'), '\n' );
|
||||
text = text.replace( new RegExp('\\n? {' + leadingWs + '}'), '\n' );
|
||||
}
|
||||
|
||||
return text;
|
||||
|
|
Loading…
Reference in a new issue