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