five-server
Version:
Development Server with Live Reload Capability. (Maintained Fork of Live Server)
12 lines • 371 B
JavaScript
;
/**
* @copyright Copyright (c) 2012 Tapio Vierros (https://github.com/tapio)
* @license {@link https://github.com/tapio/live-server#license MIT}
*/
Object.defineProperty(exports, "__esModule", { value: true });
const example = (req, res, next) => {
res.statusCode = 202;
next();
};
exports.default = example;
//# sourceMappingURL=example.js.map