@acdh-oeaw/universalviewer
Version:
The Universal Viewer is a community-developed open source project on a mission to help you share your 📚📜📰📽️📻🗿 with the 🌎
17 lines • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StringValue = void 0;
var StringValue = /** @class */ (function () {
function StringValue(value) {
this.value = "";
if (value) {
this.value = value.toLowerCase();
}
}
StringValue.prototype.toString = function () {
return this.value;
};
return StringValue;
}());
exports.StringValue = StringValue;
//# sourceMappingURL=StringValue.js.map