cytoscape-edgehandles
Advanced tools
Comparing version 3.4.1 to 3.4.2
@@ -93,3 +93,5 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
srcs.forEach(function (src) { | ||
srcs.filter(function (src) { | ||
return src != null; | ||
}).forEach(function (src) { | ||
Object.keys(src).forEach(function (k) { | ||
@@ -96,0 +98,0 @@ return tgt[k] = src[k]; |
{ | ||
"name": "cytoscape-edgehandles", | ||
"version": "3.4.1", | ||
"version": "3.4.2", | ||
"description": "Edge creation UI extension for Cytoscape", | ||
@@ -12,3 +12,3 @@ "main": "cytoscape-edgehandles.js", | ||
"postpublish": "run-s gh-pages", | ||
"gh-pages": "gh-pages -d gh-pages", | ||
"gh-pages": "gh-pages -d pages", | ||
"copyright": "update license", | ||
@@ -15,0 +15,0 @@ "lint": "eslint src", |
// Simple, internal Object.assign() polyfill for options objects etc. | ||
module.exports = Object.assign != null ? Object.assign.bind( Object ) : function( tgt, ...srcs ){ | ||
srcs.forEach( src => { | ||
srcs.filter( src => src != null ).forEach( src => { | ||
Object.keys( src ).forEach( k => tgt[k] = src[k] ); | ||
@@ -6,0 +6,0 @@ } ); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
170922
1828