Skip to content

Commit

Permalink
Pass on parameters to store.
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Nov 22, 2011
1 parent c40851b commit a95baf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stores.js
Expand Up @@ -2,6 +2,6 @@
* This provides utilities for stores * This provides utilities for stores
*/ */


exports.DefaultStore = function(){ exports.DefaultStore = function(options){
return require("./store/replicated").Replicated(require("./store/memory").Persistent()); return require("./store/replicated").Replicated(require("./store/memory").Persistent(options));
}; };

0 comments on commit a95baf8

Please sign in to comment.