rsnext/packages/next/build/polyfills/object.assign/index.js

11 lines
209 B
JavaScript
Raw Normal View History

var assign = Object.assign.bind(Object)
function g() {
return assign
}
Object.defineProperties(g(), {
implementation: { get: g },
shim: { value: g },
getPolyfill: { value: g },
})
module.exports = g()