Browse Source

v2.3.5

v2 v2.3.5
AJ ONeal 6 years ago
parent
commit
cc624e716b
  1. 1
      lib/core.js
  2. 2
      package.json

1
lib/core.js

@ -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]);
}
});

2
package.json

@ -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": [

Loading…
Cancel
Save