OwlCyberSecurity - MANAGER
Edit File: polyfill-object-assign.js
/** * Polyfill to add the Assign method to browsers which can't unterstand it properly */ if (typeof Object.assign !== 'function') { Object.assign = function(target) { if (target === null) { throw new TypeError('Cannot convert undefined or null to object'); } target = Object(target); for (var index = 1; index < arguments.length; index += 1) { var source = arguments[index]; if (source !== null) { for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } } return target; }; }