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:
@ -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;
|
||||
};
|
||||
|
@ -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 {
|
||||
|
Reference in New Issue
Block a user