UNPKG

qcobjects

Version:

QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.

4 lines 160 B
export const subelements = function subelements<T>(this: any, query: string): T[] { const _self = this; return [..._self.querySelectorAll(query)] as T[]; };