Nodejs String Strip strip()

Here you can find the source of strip()

Method Source Code

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

Related

  1. strip()
    String.prototype.strip = function() {
      return this.replace(/^\s+/, '').replace(/\s+$/, '');
    };
    
  2. strip()
    String.prototype.strip = function() {
       return this.replace(/^\s+/,"").replace(/\s+$/,"");
    };
    
  3. strip()
    String.prototype.strip = function(){
      return $.trim(this)
    
  4. strip()
    var DECODE_HTML_CHARACTERS = {
        'nbsp': ' ',
        'amp': '&',
        'quot': '"',
        'lt': '<',
        'gt': '>'
    };
    String.prototype.strip = function() {
        var self = this.replace(/<\/?[^>]+(>|$)/g, '');
    ...