mirror of
https://github.com/bodyrep/DemoApp.git
synced 2025-12-06 06:01:48 +00:00
12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
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);
|
|
};
|