Skip to content
Snippets Groups Projects
Commit 3f02cf05 authored by Alexander Rose's avatar Alexander Rose
Browse files

take .isDefined into account in CifField.ofColumn

parent a57a9f03
No related branches found
No related tags found
No related merge requests found
......@@ -222,7 +222,7 @@ export namespace CifField {
}
export function ofColumn(column: Column<any>): CifField {
const { rowCount, valueKind, areValuesEqual } = column;
const { rowCount, valueKind, areValuesEqual, isDefined } = column;
let str: CifField['str']
let int: CifField['int']
......@@ -253,7 +253,7 @@ export namespace CifField {
return {
__array: void 0,
binaryEncoding: void 0,
isDefined: true,
isDefined,
rowCount,
str,
int,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment