read-gedcom
Version:
Gedcom file reader
11 lines • 456 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionMetaEvent = void 0;
const internal_1 = require("./internal");
class SelectionMetaEvent extends internal_1.SelectionAny {
valueAsArray() {
return this.value().map(v => v !== null ? v.split(', ') : null); // Not a typo, comma is followed by a space
}
}
exports.SelectionMetaEvent = SelectionMetaEvent;
//# sourceMappingURL=SelectionMetaEvent.js.map