This commit is contained in:
AJ ONeal 2018-07-04 01:24:56 -06:00
parent 13ff4bd4dc
commit ddd9faf76a
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "le-store-certbot", "name": "le-store-certbot",
"version": "2.1.5", "version": "2.1.6",
"description": "The \"certbot\" storage strategy for Greenlock.js", "description": "The \"certbot\" storage strategy for Greenlock.js",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {