mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
|
/**
|
||
|
* Basic configuration
|
||
|
*/
|
||
|
module.exports = function () {
|
||
|
this.encoding = 'utf8';
|
||
|
this.timeout = 0;
|
||
|
this.maxBuffer = 200 * 1024
|
||
|
}
|