Newer
Older
alert / js / node_modules / object.assign / shim.js
@Réz István Réz István on 18 Nov 2021 305 bytes first commit
'use strict';

var define = require('define-properties');
var getPolyfill = require('./polyfill');

module.exports = function shimAssign() {
	var polyfill = getPolyfill();
	define(
		Object,
		{ assign: polyfill },
		{ assign: function () { return Object.assign !== polyfill; } }
	);
	return polyfill;
};