notify.moe/scripts/Utils/findAll.ts
2019-11-18 11:04:13 +09:00

8 lines
217 B
TypeScript

export default function* findAll(className: string): IterableIterator<HTMLElement> {
const elements = document.getElementsByClassName(className)
for(const element of elements) {
yield element as HTMLElement
}
}