UNPKG
northwind-rest-api
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Local REST API Exposing Northwind Database.
northwind-rest-api
/
backend
/
middleware
/
delay.js
5 lines
(4 loc)
•
100 B
JavaScript
View Raw
1
2
3
4
5
function
delay
(
request, response, next
) {
setTimeout
(next,
3000
); }
module
.
exports
= delay;