Skip to content

Commit

Permalink
refactor(iges): update $Z2 usage
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 10, 2021
1 parent ac98e60 commit 7e6cf98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/iges/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const formatTerminate = (doc: IGESDocument) =>

const formatStatus = (s: Partial<EntityStatus>) =>
[s.blank || 0, s.subord || 0, s.usage || 0, s.hierarchy || 0]
.map($Z2)
.map((x) => $Z2(x))
.join("");

const formatDictEntry = (e: DictEntry) =>
Expand Down

0 comments on commit 7e6cf98

Please sign in to comment.