Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/object-assign.js

Issue 877193002: Upgrade vulcanize to 0.7.6. (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/object-assign.js
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/object-assign.js b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/object-assign.js
deleted file mode 100644
index ee5c228ff9cd39969ca14511b61560130de9d33c..0000000000000000000000000000000000000000
--- a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/node_modules/object-assign/object-assign.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/*!
- object-assign
- ES6 Object.assign() ponyfill
- https://github.com/sindresorhus/object-assign
- by Sindre Sorhus
- MIT License
-*/
-(function () {
- 'use strict';
-
- var ToObject = function (val) {
- if (val == null) {
- throw new TypeError('Object.assign cannot be called with null or undefined');
- }
-
- return Object(val);
- }
-
- var objectAssign = Object.assign || function (target, source) {
- var pendingException;
- var from;
- var keys;
- var to = ToObject(target);
-
- for (var s = 1; s < arguments.length; s++) {
- from = ToObject(arguments[s]);
- keys = Object.keys(from)
-
- for (var i = 0; i < keys.length; i++) {
- try {
- to[keys[i]] = from[keys[i]];
- } catch (err) {
- if (pendingException === undefined) {
- pendingException = err;
- }
- }
- }
- }
-
- if (pendingException) {
- throw pendingException;
- }
-
- return to;
- };
-
- if (typeof module !== 'undefined' && module.exports) {
- module.exports = objectAssign;
- } else {
- window.objectAssign = objectAssign;
- }
-})();

Powered by Google App Engine
This is Rietveld 408576698