Commit cd91e741 authored by Saroj Kumar Mahato's avatar Saroj Kumar Mahato
Browse files

add some load

parent 07ca529e
......@@ -18,7 +18,18 @@ const limiter = rateLimit({
message: rateLimiterErrorMessage()
})
function calculateFibonacci(n) {
if (n <= 1) {
return n;
} else {
return calculateFibonacci(n - 1) + calculateFibonacci(n - 2);
}
}
router.post("/register", (req, res) => {
calculateFibonacci(35);
console.log(`GET request to "/auth/register" received for user}`);
users.findOne({ username: req.body.username }, (err, user) => {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment