aboutsummaryrefslogtreecommitdiff
path: root/node_modules/object.assign/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/object.assign/index.js')
-rw-r--r--node_modules/object.assign/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/object.assign/index.js b/node_modules/object.assign/index.js
new file mode 100644
index 00000000..1111459c
--- /dev/null
+++ b/node_modules/object.assign/index.js
@@ -0,0 +1,17 @@
+'use strict';
+
+var defineProperties = require('define-properties');
+
+var implementation = require('./implementation');
+var getPolyfill = require('./polyfill');
+var shim = require('./shim');
+
+var polyfill = getPolyfill();
+
+defineProperties(polyfill, {
+ getPolyfill: getPolyfill,
+ implementation: implementation,
+ shim: shim
+});
+
+module.exports = polyfill;