Here you can find the source of stripNewlines()
String.prototype.stripNewlines = function() { return this.replace(/[\n\r]/g,""); }
String.prototype.lstrip = function(){ return this.replace(/^\s+/,'')
String.prototype.rstrip = function () { return this.replace(/\s+$/, "") };
String.prototype.rstrip = function(){ return this.replace(/\s+$/,'')
String.prototype.rstrip = function (chars) { let regex = new RegExp(chars + "$"); return this.replace(regex, ""); };
String.prototype.stripNewline = function(str){ var trimLoc = this.indexOf("\r\n"); if (trimLoc < 0) { trimLoc = this.indexOf("\n"); if (trimLoc < 0) { trimLoc = this.indexOf("\r"); if (trimLoc > 0) { ...
String.prototype.stripPunctuation = function () { return this.replace(/\W+/, '');
String.prototype.stripScripts = function() return this.replace(new RegExp('<script[^>]*>([\\S\\s]*?)<\/script>', 'img'), ''); };
function now(){ return (new Date()).getTime(); String.prototype.stripSlashes = function(){ return this.replace(/\\(.)/mg, "$1");
String.prototype.stripStart = function (s) { if(this.indexOf(s)==0){ return this.substring(s.length, this.length); return this;