Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
c3fd8750b2 | |||
2b3c28c7a1 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartacme",
|
"name": "@pushrocks/smartacme",
|
||||||
"version": "2.0.20",
|
"version": "2.0.21",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartacme",
|
"name": "@pushrocks/smartacme",
|
||||||
"version": "2.0.20",
|
"version": "2.0.21",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "acme implementation in TypeScript",
|
"description": "acme implementation in TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -31,8 +31,10 @@ export class Cert extends plugins.smartdata.SmartDataDbDoc<Cert> implements inte
|
|||||||
|
|
||||||
constructor(optionsArg: ICert) {
|
constructor(optionsArg: ICert) {
|
||||||
super();
|
super();
|
||||||
Object.keys(optionsArg).forEach(key => {
|
if (optionsArg) {
|
||||||
this[key] = optionsArg[key];
|
Object.keys(optionsArg).forEach(key => {
|
||||||
});
|
this[key] = optionsArg[key];
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user