1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-03 21:07:07 +01:00

Rename imp() to i() (interim).

This commit is contained in:
hacksalot
2016-01-05 22:02:11 -05:00
parent d69688697c
commit e230d640cb
3 changed files with 9 additions and 7 deletions

View File

@ -212,7 +212,7 @@ Definition of the FRESHResume class.
/**
Return internal metadata. Create if it doesn't exist.
*/
FreshResume.prototype.imp = function() {
FreshResume.prototype.i = function() {
this.imp = (this.imp || { });
return this.imp;
};

View File

@ -75,7 +75,7 @@ Definition of the ResumeFactory class.
if( objectify ) {
var ResumeClass = require('../core/' + (toFormat || orgFormat) + '-resume');
rez = new ResumeClass().parseJSON( json );
rez.imp().file = src;
rez.i().file = src;
}
return {