Skip to content

Commit

Permalink
forgot the return in ('traverse/web').source()
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Aug 28, 2010
1 parent 92046a4 commit 188ee17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/web.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var fs = require('fs');

// return a special webified version of traverse
exports.source = function () {
[ 'traverse.js', 'hash.js' ].map(scrub).join('\n');
return [ 'traverse.js', 'hash.js' ].map(scrub).join('\n');
};

function scrub (filename) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "traverse",
"version" : "0.0.8",
"version" : "0.0.9",
"description" : "Traverse and transform objects by visiting every node on a recursive walk.",
"author" : "James Halliday",
"license" : "MIT/X11",
Expand Down

0 comments on commit 188ee17

Please sign in to comment.