v2.1.6
This commit is contained in:
parent
13ff4bd4dc
commit
ddd9faf76a
2
index.js
2
index.js
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Loading…
Reference in New Issue