mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-13 01:00:33 -04:00
5 lines
74 B
JavaScript
5 lines
74 B
JavaScript
exports.name = function (req, res) {
|
|
res.json({
|
|
name: 'Bob'
|
|
});
|
|
}; |