lint compliance

This commit is contained in:
ansuz 2020-04-29 17:23:29 -04:00
parent 6dc6fed21d
commit 488f876ad6
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ var handlers = {};
handlers[level] = function (ctx, content) { console.log(content); };
});
['warn', 'error'].forEach(function (level) {
handlers[level] = function (ctx, content) { console.error(content); }
handlers[level] = function (ctx, content) { console.error(content); };
});
var noop = function () {};