Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
8 lines
135 B
8 lines
135 B
2 years ago
|
module.exports = {
|
||
|
parse: function() {
|
||
|
return this.createSingleNodeList(
|
||
|
this.Identifier()
|
||
|
);
|
||
|
}
|
||
|
};
|