index.js 304 B

12345678910111213141516171819
  1. "use strict";
  2. var assign = Object.assign.bind(Object);
  3. function g() {
  4. return assign;
  5. }
  6. Object.defineProperties(g(), {
  7. implementation: {
  8. get: g
  9. },
  10. shim: {
  11. value: g
  12. },
  13. getPolyfill: {
  14. value: g
  15. }
  16. });
  17. module.exports = g();
  18. //# sourceMappingURL=index.js.map