kobezzza,
$C(document.querySelectorAll('.foo')).forEach((el) => {
...
}
почему не написать так ?
HTMLCollection.prototype.forEach = NodeList.prototype.forEach = Array.prototype.forEach;
// ................
document.querySelectorAll('.foo').forEach((el) => {
...
}
то-же самое с get, map
как по мне без $C выглядит красивее, переопределив прототип