
js.prompto.store.AttributeInfo.js Maven / Gradle / Ivy
function AttributeInfo(name, family, collection, indexTypes) {
this.name = name
this.family = family
this.collection = collection
this.key = indexTypes == null ? false : indexTypes.indexOf("key")>=0;
this.value = indexTypes == null ? false : indexTypes.indexOf("value")>=0;
this.words = indexTypes == null ? false : indexTypes.indexOf("words")>=0;
return this;
};
exports.AttributeInfo = AttributeInfo;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy