This commit is contained in:
AJ ONeal 2018-07-04 02:21:07 -06:00
parent 157f6a7380
commit cc624e716b
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ function promisifyAll(obj) {
var aobj = {};
Object.keys(obj).forEach(function (key) {
if ('function' === typeof obj[key]) {
aobj[key] = obj[key];
aobj[key + 'Async'] = util.promisify(obj[key]);
}
});

View File

@ -1,6 +1,6 @@
{
"name": "greenlock",
"version": "2.3.4",
"version": "2.3.5",
"description": "Let's Encrypt for node.js on npm",
"main": "index.js",
"files": [