diff --git a/ajquery.js b/ajquery.js index d388f7f..0ad0405 100644 --- a/ajquery.js +++ b/ajquery.js @@ -3,5 +3,5 @@ function $(sel, el) { } function $$(sel, el) { - return (el || document).querySelectorAll(sel); + return Array.from((el || document).querySelectorAll(sel)); }