UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 472 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IdentityPropertyValue = void 0; const PropertyValue_1 = require("../PropertyValue"); class IdentityPropertyValue extends PropertyValue_1.PropertyValue { constructor(identities) { super(); this.identities = identities; } isEmpty() { return !this.identities || this.identities.length == 0; } } exports.IdentityPropertyValue = IdentityPropertyValue;