Show More
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
References:
File last commit:
Show/Diff file:
Action:
node_modules/object.assign/shim.js
| 14 lines
| 305 B
| application/javascript
| JavascriptLexer
|
r789 | '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; | ||||
}; | ||||