InternetProgramming/Lab3/node_modules/json-server/lib/server/router/write.js
2023-12-15 14:42:22 +04:00

8 lines
119 B
JavaScript

"use strict";
module.exports = function write(db) {
return (req, res, next) => {
db.write();
next();
};
};