Skip to content

Commit

Permalink
add additional nullFlavor option
Browse files Browse the repository at this point in the history
  • Loading branch information
jsachs committed Dec 29, 2015
1 parent a9c9573 commit b28a0a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/parser/common/cleanup.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ cleanup.augmentConcept = function () {
}

if (common.exists(this.js.nullFlavor)) {
if (this.js.nullFlavor === "UNK" ||
if (this.js.nullFlavor === "UNK" || this.js.nullFlavor === "OTH" ||
(this.js.nullFlavor === "NA" && this.js.translations)) {
this.js.code = "";
delete this.js.nullFlavor;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blue-button",
"version": "1.8.0-beta.8",
"version": "1.8.0-beta.9",
"description": "Blue Button (CCDA, C32, CMS) to JSON Parser.",
"main": "./index.js",
"directories": {
Expand Down

0 comments on commit b28a0a1

Please sign in to comment.