Nodejs Class Extend extend(destination, source)

Here you can find the source of extend(destination, source)

Method Source Code

Object.extend = function(destination, source) {
  for (var property in source) {
    if (source.hasOwnProperty(property)) {
      destination[property] = source[property];
    }/*from w w  w .ja va 2s.co  m*/
  }
  return destination;
}

Related

  1. __extends(parent)
    Function.prototype.__extends = function(parent) {
        this.prototype = Object.create(parent.prototype);
    };
    
  2. __extends(superClass)
    Function.prototype.__extends = function(superClass) { 
        this.prototype = Object.create(superClass.prototype);
    }; 
    Object._entries = function(obj) {
        var entry = [];
        for (key in obj)
            entry[entry.length] = [key, obj[key]];
        return entry;
    };
    ...
    
  3. Inherits(parent)
    Object.prototype.Inherits = function(parent) {
      if(arguments.length > 1) {
        parent.apply(this, Array.prototype.slice.call(arguments, 1) );
      } else {      
        parent.call(this);
    };
    
  4. extend()
    Object.prototype.extend = function(){
       var Obj = function(){};
       Obj.prototype = this;
       return new Obj();
    
  5. extend(destination, source)
    Object.extend = function(destination, source) {
      for (var property in source) {
        if (source.hasOwnProperty(property)) {
          destination[property] = source[property];
      return destination;
    };
    
  6. extend(obj)
    Object.prototype.extend = function(obj) {
       for (var i in obj) {
          if (obj.hasOwnProperty(i)) {
             this[i] = obj[i];
    };
    Array.prototype.first = function() {
        return this.length && this[0];
    ...
    
  7. extend(object)
    Object.prototype.extend = function (object)
      var combined = this;
      object.each( function (value, key)
        combined[key] = value;
      });
      return combined;
    };
    ...
    
  8. extend(other)
    Object.prototype.extend = function(other)
      let property;
      for (property in other)
        if( other.hasOwnProperty(property) &&
            other[property] != null )
          this[property] = other[property];
    ...
    
  9. extend(target)
    Object.extend = function(target) {
        Array.toArray(arguments, 1).forEach(function(source) {
            var fld;
            for (fld in source) {
                if (source.hasOwnProperty(fld)) {
                    target[fld] = source[fld];
        });
    ...