Skip to content

Commit

Permalink
fix: remove console.log from unpatch
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Dec 4, 2017
1 parent 3a276e5 commit aaf1707
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/patchFs.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export default function patchFs(vol, fs = require('fs')) {

// Give user back a method to revert the changes.
return function unpatch () {
console.log(bkp);
for (const key in bkp) fs[key] = bkp[key];
};
};

0 comments on commit aaf1707

Please sign in to comment.