github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/server/camlistored/ui/object.js (about)

     1  /**
     2   * Object related utilities beyond what exist in Closure.
     3   */
     4  goog.provide('cam.object');
     5  
     6  cam.object.extend = function(o, n) {
     7  	var obj = {};
     8  	goog.mixin(obj, o);
     9  	goog.mixin(obj, n);
    10  	return obj;
    11  }