Nodejs String Strip stripstrip()

Here you can find the source of stripstrip()

Method Source Code

String.prototype.strip = function strip() {
  return this.replace(/^\s+/, '').replace(/\s+$/, '');
};

Related

  1. stripUsername()
    String.prototype.stripUsername = function() {
        return this.replace(/[@]+[A-Za-z0-9-_]+/g, "");
    };
    
  2. stripUtfBom()
    String.prototype.stripUtfBom = function() {
      var string = this.toString();
      if (string.charCodeAt(0) === 0xFEFF) {
        string = string.slice(1);
      return string;
    };
    
  3. stripWhitespace()
    String.prototype.stripWhitespace = function(){
      return this.replace(new RegExp("\\s", "g"), "");
    };
    
  4. strip_html()
    String.prototype.strip_html = function() {
      var value = "";
      try {
        value = $('<p>' + this + '</p>').text();
        if (value == "") {
          value = this;
      } catch(err) {
        value = this;
    ...
    
  5. stripslashes()
    String.prototype.stripslashes = function () {
        return (this + '').replace(/\\(.?)/g, function (s,n1) {
            switch (n1) {
                case '\\':
                    return '\\';
                case '0':
                    return '\u0000';
                case '':
                    return '';
    ...