Skip to content

Commit

Permalink
Merge pull request Trott#10 from dvv/master
Browse files Browse the repository at this point in the history
obey coding style
  • Loading branch information
Vitaly Puzrin committed Nov 23, 2011
2 parents f7a5cba + 579639f commit 426a816
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/fs-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@

// stdlib
var fs = require('fs'),
Path = require('path'),
path_join = Path.join,
path_exists = Path.exists,
path_normalize = Path.normalize,
dirname = Path.dirname;
path_join = require('path').join,
path_exists = require('path').exists,
path_normalize = require('path').normalize,
dirname = require('path').dirname;


// 3rd-party
Expand Down

0 comments on commit 426a816

Please sign in to comment.