Skip to content

Commit

Permalink
remove unnecessary empty object
Browse files Browse the repository at this point in the history
  • Loading branch information
zertosh committed Oct 25, 2015
1 parent b23c9c9 commit 8de59fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function watchify (b, opts) {
var file = row.expose ? b._expose[row.id] : row.file;
cache[file] = {
source: row.source,
deps: xtend({}, row.deps)
deps: xtend(row.deps)
};
this.push(row);
next();
Expand Down

0 comments on commit 8de59fb

Please sign in to comment.