18 lines
301 B
JavaScript
18 lines
301 B
JavaScript
/*!
|
|
* Connect - timeout
|
|
* Ported from https://github.com/LearnBoost/connect-timeout
|
|
* MIT Licensed
|
|
*/
|
|
|
|
/**
|
|
* Timeout:
|
|
*
|
|
* See [connect-timeout](https://github.com/expressjs/timeout)
|
|
*
|
|
* @param {Number} ms
|
|
* @return {Function}
|
|
* @api public
|
|
*/
|
|
|
|
module.exports = require('connect-timeout');
|