MCPcopy Index your code
hub / github.com/mailru/FileAPI / _extend

Function _extend

lib/FileAPI.core.js:99–105  ·  view source on GitHub ↗
(dst)

Source from the content-addressed store, hash-verified

97 * Merge the contents of two or more objects together into the first object
98 */
99 _extend = function (dst){
100 var args = arguments, i = 1, _ext = function (val, key){ dst[key] = val; };
101 for( ; i < args.length; i++ ){
102 _each(args[i], _ext);
103 }
104 return dst;
105 },
106
107 /**
108 * Add event listener

Callers 3

FileAPI.core.jsFile · 0.85
_emitFunction · 0.85
_simpleCloneFunction · 0.85

Calls 1

_eachFunction · 0.85

Tested by

no test coverage detected