Skip to content

Instantly share code, notes, and snippets.

@jasondmoss
Last active December 10, 2019 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasondmoss/21bdc68848ba9825f101a6ec88e50be6 to your computer and use it in GitHub Desktop.
Save jasondmoss/21bdc68848ba9825f101a6ec88e50be6 to your computer and use it in GitHub Desktop.
Polyfill Methods for Internet Explorer 11 and below.
/**
* Polyfill for `Object.assign()`
*
* @return {String} Object target.
*
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
*/
if (typeof Object.assign !== "function") {
/**
* Must be writable: true, enumerable: false, configurable: true.
*/
Object.defineProperty(Object, "assign", {
value: function assign(target, varArgs) {
"use strict";
/**
* TypeError if undefined or null.
*/
if (target == null) {
throw new TypeError("Cannot convert undefined or null to object");
}
var to = Object(target);
for (var index = 1; index < arguments.length; index++) {
var nextSource = arguments[index];
/**
* Skip over if undefined or null.
*/
if (nextSource !== null) {
for (var nextKey in nextSource) {
/**
* Avoid bugs when hasOwnProperty is shadowed.
*/
if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {
to[nextKey] = nextSource[nextKey];
}
}
}
}
return to;
},
writable: true,
configurable: true
});
}
/* <> */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment