1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00

Minor extensions to Sheet class.

This commit is contained in:
devlinjd 2015-09-17 07:27:30 -04:00
parent 8b57f9ce57
commit ffa06118a0

View File

@ -15,6 +15,9 @@ Abstract character/resume sheet representation.
this.fileName = null; this.fileName = null;
} }
/**
Open and parse the specified JSON resume sheet.
*/
Sheet.prototype.open = function( file, title ) { Sheet.prototype.open = function( file, title ) {
var rep = JSON.parse( FS.readFileSync( file, 'utf8' ) ); var rep = JSON.parse( FS.readFileSync( file, 'utf8' ) );
extend( true, this, rep ); extend( true, this, rep );
@ -24,6 +27,16 @@ Abstract character/resume sheet representation.
return this; return this;
}; };
/**
Determine if the sheet includes a specific social profile (eg, GitHub).
*/
Sheet.prototype.hasProfile = function( socialNetwork ) {
socialNetwork = socialNetwork.trim().toLowerCase();
return this.basics.profiles && this.basics.profiles.filter(function(prof) {
return prof.network.trim().toLowerCase() === socialNetwork;
}).length > 0;
}
module.exports = Sheet; module.exports = Sheet;
}()); }());