This commit is contained in:
Fede Ramirez
2015-03-19 05:11:58 -03:00
parent 42b00aeb14
commit 8bdeccca64
8 changed files with 333 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"use strict;"
var util = require('util');
var path = require('path');
var JsonFile = require('./JsonFile');
/**
* @constructor RegistryFile
*/
var RegistryFile = module.exports = function RegistryFile(){
if( !(this instanceof RegistryFile) )
return new RegistryFile();
JsonFile.call(this, path.resolve('./registry.json'));
};
util.inherits(RegistryFile, JsonFile);