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

8 lines
238 B
TypeScript

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