Skip to content

Commit

Permalink
Build for release
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Oct 24, 2018
1 parent be1bf7e commit d0e4006
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cytoscape-edgehandles.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ module.exports = Object.assign != null ? Object.assign.bind(Object) : function (
srcs[_key - 1] = arguments[_key];
}

srcs.forEach(function (src) {
srcs.filter(function (src) {
return src != null;
}).forEach(function (src) {
Object.keys(src).forEach(function (k) {
return tgt[k] = src[k];
});
Expand Down

0 comments on commit d0e4006

Please sign in to comment.