(el: Node)
| 177 | export const FILTER_SKIP = 3; |
| 178 | |
| 179 | export const isContainer = (el: Node) => { |
| 180 | return isElement(el) && el.hasAttribute(QContainerAttr); |
| 181 | }; |
| 182 | |
| 183 | export const intToStr = (nu: number) => { |
| 184 | return nu.toString(36); |
nothing calls this directly
no test coverage detected
searching dependent graphs…