mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 01:56:21 +00:00
Cleanup.
This commit is contained in:
parent
aa58edd853
commit
c54137a493
33
src/sheet.js
33
src/sheet.js
@ -1,21 +1,26 @@
|
||||
/**
|
||||
Abstract character/resume sheet representation.
|
||||
@license Copyright (c) 2015 by James M. Devlin. All rights reserved.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
|
||||
var FS = require('fs');
|
||||
var FS = require('fs');
|
||||
|
||||
function Sheet() {
|
||||
function Sheet() {
|
||||
this.id = null;
|
||||
this.title = "New";
|
||||
this.rep = { };
|
||||
this.fileName = null;
|
||||
}
|
||||
|
||||
this.id = null;
|
||||
this.title = "";
|
||||
this.sheets = [];
|
||||
this.rep = { };
|
||||
Sheet.prototype.open = function( file, title ) {
|
||||
this.rep = JSON.parse( FS.readFileSync( file, 'utf8' ) );
|
||||
this.fileName = file;
|
||||
this.title = title || this.rep.basics.name;
|
||||
return this;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Sheet.prototype.open = function( file ) {
|
||||
this.rep = JSON.parse( FS.readFileSync( file, 'utf8' ) );
|
||||
return this;
|
||||
};
|
||||
|
||||
module.exports = Sheet;
|
||||
module.exports = Sheet;
|
||||
|
||||
}());
|
||||
|
Loading…
Reference in New Issue
Block a user