Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
34 lines (32 loc) · 1.17 KB

File metadata and controls

34 lines (32 loc) · 1.17 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Object.assign polyfill from:
// https://github.com/google/closure-compiler/blob/master/src/com/google/javascript/jscomp/js/es6/util/assign.js
#if !POLYFILL
#error "this file should never be included unless POLYFILL is set"
#endif
if (typeof Object.assign == 'undefined') {
/**
* Equivalent to the Object.assign() method, but guaranteed to be available for use in code
* generated by the compiler.
*
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
*
* Copies values of all enumerable own properties from one or more
* sources to the given target object, and returns the target.
*
* @final
* @param {!Object} target The target object onto which to copy.
* @param {...?Object} source The source objects.
* @return {!Object} The target object is returned.
* @suppress {visibility, duplicate, checkTypes}
*/
Object.assign = function(target, source) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
if (!source) continue;
for (var key in source) {
if (source.hasOwnProperty(key)) target[key] = source[key];
}
}
return target;
};
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.