var util = require('util'); /* * gzippo - store * Copyright(c) 2012 Tom Gallacher * MIT Licensed */ var Store = module.exports = function Store(options) { if (!(this instanceof Store)) return new Store(options); };