Skip to content

Commit

Permalink
[minor] Expose some additional things from common.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Mar 13, 2013
1 parent 100747a commit bad34ce
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions lib/godot.js
Expand Up @@ -26,6 +26,13 @@ exports.reactor = require('./godot/reactor');
//
exports.producer = require('./godot/producer');

//
// ### @common {Object}
// Expose `common` module for performing basic
// streaming.
//
exports.common = require('./godot/common');

//
// ### @math {Object}
// Expose `math` module for performing basic
Expand Down
8 changes: 7 additions & 1 deletion lib/godot/common/index.js
Expand Up @@ -28,4 +28,10 @@ exports.ReadWriteStream = require('./read-write-stream');
// ### @JsonParser {function}
// Constructor function for the godot streaming JsonParser
//
exports.JsonParser = require('./json-parser');
exports.JsonParser = require('./json-parser');

//
// ### @FilterStream {function}
// Constructor function for the base FilterStream
//
exports.FilterStream = require('./filter-stream');

0 comments on commit bad34ce

Please sign in to comment.