Nodejs String Trim trim()

Here you can find the source of trim()

Method Source Code

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

Related

  1. trim()
    String.prototype.trim = function () {
      return this.replace(/^\s+|\s+$/g, "");
    
  2. trim()
    String.prototype.trim = function () {
      return this.replace(/^\s+|\s+$/, "");
    };
    
  3. trim()
    'use strict';
    String.prototype.trim = function(){
      return /^\s*([\d\D]*?)\s*$/.exec(this)[1];
    };
    
  4. trim()
    String.prototype.trim=function(){
      return this.replace(/^\s+|\s+$/g,"");
    
  5. trim()
    String.prototype.trim = function () {
      return this.replace(/^\s+/, ""); 
    };
    
  6. trim()
    String.prototype.trim = function () {
        return this.replace(/^\s+|\s+$/, "");
    };
    
  7. trim()
    String.prototype.trim = function()
      return this.replace(/(^\s*)|(\s*$)/gi, "");
    };
    
  8. trim()
    String.prototype.trim = function () {
        return this.replace(/(^\s*)|(\s*$)/g, '');
    
  9. trim()
    String.prototype.trim = function() {
      return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,"");