| 12345678910111213141516171819202122232425 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- class ContactItem {
- constructor(props) {
- this.data = props;
- this.hash = props.hash;
- this.id = props.id;
- this.addrs = props.addrs || [];
- this.groups = props.groups || [];
- }
- matchesAddressOrName(search) {
- if (this.addrs.filter(x => x.indexOf(search.trim()) >= 0)[0].length > 0) {
- return true;
- }
- return false;
- }
- matchesGroup(group) {
- if (this.groups.filter(x => x === group.trim())[0].length > 0) {
- return true;
- }
- return false;
- }
- }
- exports.ContactItem = ContactItem;
- //# sourceMappingURL=contact-item.js.map
|