mirror of
https://github.com/JuanCanham/jsonresume-theme-modern.git
synced 2025-07-15 14:41:10 +01:00
9 lines
112 B
JavaScript
9 lines
112 B
JavaScript
|
|
function render(resumeObject) {
|
|
return JSON.stringify(resumeObject);
|
|
};
|
|
|
|
module.exports = {
|
|
render: render
|
|
}
|