mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 14:57:26 +08:00
20 lines
188 B
JavaScript
20 lines
188 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
queue = require('queue')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function Spooler()
|
|
{
|
|
this.queue = queue(1);
|
|
}
|
|
|
|
module.exports = new Spooler();
|
|
|
|
}());
|