Closes #238 Updated async library in order to use lib in —use-strict mode

This commit is contained in:
Dmitry M. Lazutkin
2014-08-28 12:04:02 +04:00
parent fb072dd70d
commit 7558a3c367
6 changed files with 9 additions and 9 deletions

View File

@@ -56,7 +56,7 @@ function configure(config, options) {
}
function shutdown(cb) {
async.forEach(openFiles, function(file, done) {
async.each(openFiles, function(file, done) {
if (!file.write(eol, "utf-8")) {
file.once('drain', function() {
file.end(done);