We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d51cf commit 41eb17cCopy full SHA for 41eb17c
1 file changed
js/main.js
@@ -735,28 +735,4 @@ const MM = (function () {
735
};
736
}());
737
738
-// Add polyfill for Object.assign.
739
-if (typeof Object.assign !== "function") {
740
- (function () {
741
- Object.assign = function (target) {
742
- "use strict";
743
- if (target === undefined || target === null) {
744
- throw new TypeError("Cannot convert undefined or null to object");
745
- }
746
- const output = Object(target);
747
- for (let index = 1; index < arguments.length; index++) {
748
- const source = arguments[index];
749
- if (source !== undefined && source !== null) {
750
- for (const nextKey in source) {
751
- if (source.hasOwnProperty(nextKey)) {
752
- output[nextKey] = source[nextKey];
753
754
755
756
757
- return output;
758
- };
759
- }());
760
-}
761
-
762
MM.init();
0 commit comments