gherkin-ast
Advanced tools
Comparing version 3.0.2 to 3.0.3
@@ -13,3 +13,3 @@ "use strict"; | ||
static parse(obj) { | ||
if (!obj || !obj.value) { | ||
if (!obj || !("value" in obj)) { | ||
throw new TypeError("The given object is not a TableCell!"); | ||
@@ -16,0 +16,0 @@ } |
# Changelog | ||
## 3.0.3 - 2021-09-17 | ||
### Fixed | ||
- Fixed empty cell issue ([#29](https://github.com/gherking/gherkin-ast/issues/29)) | ||
## 3.0.2 - 2021-02-10 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "gherkin-ast", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "JS model for Gherkin feature files", | ||
@@ -58,3 +58,3 @@ "main": "index.js", | ||
"ts-jest": "^26.5.1", | ||
"typedoc": "^0.20.23", | ||
"typedoc": "^0.22.3", | ||
"typescript": "^4.1.4" | ||
@@ -61,0 +61,0 @@ }, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
58803