Nodejs String Strip stripTrailingSlash()

Here you can find the source of stripTrailingSlash()

Method Source Code

String.prototype.stripTrailingSlash = function() {
   if (this.substr(-1) === '/') {
      return this.substr(0, this.length - 1);
   }/*from   w w w  . j  a v  a2  s .com*/
   return this;
};

Related

  1. stripPunctuation()
    String.prototype.stripPunctuation = function () {
      return this.replace(/\W+/, '');
    
  2. stripScripts()
    String.prototype.stripScripts = function()
        return this.replace(new RegExp('<script[^>]*>([\\S\\s]*?)<\/script>', 'img'), '');
    };
    
  3. stripSlashes()
    function now(){
      return (new Date()).getTime();
    String.prototype.stripSlashes = function(){
        return this.replace(/\\(.)/mg, "$1");
    
  4. stripStart(s)
    String.prototype.stripStart = function (s) {
      if(this.indexOf(s)==0){
        return this.substring(s.length, this.length);
      return this;
    
  5. stripSubdomain()
    String.prototype.stripSubdomain = function() {
      return this.substr(this.indexOf(config.domainHost),this.length);
    };
    
  6. stripURL()
    String.prototype.stripURL = function() {
        return this.replace(/[A-Za-z]+\:\/\/+[A-Za-z0-9-_]+.[A-Za-z0-9-_:%&~?\/.=]+/g, "");
    };
    
  7. stripUsername()
    String.prototype.stripUsername = function() {
        return this.replace(/[@]+[A-Za-z0-9-_]+/g, "");
    };
    
  8. stripUtfBom()
    String.prototype.stripUtfBom = function() {
      var string = this.toString();
      if (string.charCodeAt(0) === 0xFEFF) {
        string = string.slice(1);
      return string;
    };
    
  9. stripWhitespace()
    String.prototype.stripWhitespace = function(){
      return this.replace(new RegExp("\\s", "g"), "");
    };