export function getElements(value: string, uniqueAttribute: string, parent: HTMLElement = document.body): NodeListOf { return parent ? parent.querySelectorAll(`[${uniqueAttribute}="${value}"]`) : null; }