Comparing version 7.0.17 to 7.0.18
@@ -301,6 +301,6 @@ "use strict"; | ||
case (values_1.ASN1UniversalType.time): return `"${this.time}"`; | ||
case (values_1.ASN1UniversalType.sequence): return ("{ " + this.sequence | ||
case (values_1.ASN1UniversalType.sequence): return ("{ " + this.sequenceOf | ||
.map((el) => (el.name.length ? `${el.name} ${el.toString()}` : el.toString())) | ||
.join(" , ") + " }"); | ||
case (values_1.ASN1UniversalType.set): return ("{ " + this.set | ||
case (values_1.ASN1UniversalType.set): return ("{ " + this.setOf | ||
.map((el) => (el.name.length ? `${el.name} ${el.toString()}` : el.toString())) | ||
@@ -405,3 +405,3 @@ .join(" , ") + " }"); | ||
} | ||
return this.sequence.map((el) => el.toJSON()); | ||
return this.sequenceOf.map((el) => el.toJSON()); | ||
} | ||
@@ -412,3 +412,3 @@ case (values_1.ASN1UniversalType.set): { | ||
} | ||
return this.set.map((el) => el.toJSON()); | ||
return this.setOf.map((el) => el.toJSON()); | ||
} | ||
@@ -415,0 +415,0 @@ case (values_1.ASN1UniversalType.numericString): return this.numericString; |
@@ -15,3 +15,3 @@ "use strict"; | ||
} | ||
return; | ||
continue; | ||
} | ||
@@ -18,0 +18,0 @@ if (spec.choice && spec.choice.length > 0) { |
@@ -15,17 +15,17 @@ { | ||
"devDependencies": { | ||
"@babel/core": "^7.20.2", | ||
"@babel/core": "^7.20.5", | ||
"@babel/preset-env": "^7.20.2", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@types/node": "^18.11.9", | ||
"@typescript-eslint/eslint-plugin": "^5.44.0", | ||
"@typescript-eslint/parser": "^5.44.0", | ||
"@types/node": "^18.11.13", | ||
"@typescript-eslint/eslint-plugin": "^5.46.0", | ||
"@typescript-eslint/parser": "^5.46.0", | ||
"babel-jest": "^29.3.1", | ||
"eslint": "^8.28.0", | ||
"eslint": "^8.29.0", | ||
"jest": "^29.3.1", | ||
"jest-junit": "^15.0.0", | ||
"npm-check-updates": "^16.4.3", | ||
"ts-loader": "^9.4.1", | ||
"typescript": "^4.9.3", | ||
"npm-check-updates": "^16.5.6", | ||
"ts-loader": "^9.4.2", | ||
"typescript": "^4.9.4", | ||
"webpack": "^5.75.0", | ||
"webpack-cli": "^5.0.0" | ||
"webpack-cli": "^5.0.1" | ||
}, | ||
@@ -65,3 +65,3 @@ "directories": { | ||
"types": "./dist/node/index.d.ts", | ||
"version": "7.0.17", | ||
"version": "7.0.18", | ||
"dependencies": { | ||
@@ -68,0 +68,0 @@ "tslib": "^2.4.1" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
693926