8 lines
332 B
JavaScript
8 lines
332 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isVersion = isVersion;
|
|
const fields = ["Comments", "Event", "Modifier", "ModifyDate", "Version"];
|
|
function isVersion(obj) {
|
|
return (obj != null && typeof obj === "object" && fields.every((f) => f in obj));
|
|
}
|
|
//# sourceMappingURL=Version.js.map
|