Nodejs String Strip stripSubdomain()

Here you can find the source of stripSubdomain()

Method Source Code

String.prototype.stripSubdomain = function() {
  return this.substr(this.indexOf(config.domainHost),this.length);
};

Related

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