mirror of
https://github.com/coolaj86/ajquery.js.git
synced 2024-11-16 17:29:02 +00:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
function $(sel, el) {
|
|
return (el || document).querySelector(sel);
|
|
}
|
|
|
|
function $$(sel, el) {
|
|
return Array.from((el || document).querySelectorAll(sel));
|
|
}
|