chore(util) add " "

This commit is contained in:
coderaiser 2014-01-23 05:19:09 -05:00
parent 97689e6c75
commit 24e4c776f4

View file

@ -59,7 +59,7 @@
* ad new line (if it's not)
* @param {string} pText
*/
this.addNewLine = function(pText){
this.addNewLine = function(pText) {
var lNewLine = '',
n = pText && pText.length;
@ -73,7 +73,7 @@
* rm new line (if it's)
* @param {string} pText
*/
this.rmNewLine = function(pText){
this.rmNewLine = function(pText) {
var strs = ['\n', '\r'],
text = Util.removeStr(pText, strs);