select-animation 1.5.1 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/select-animation.js +1 -2
package/package.json
CHANGED
package/select-animation.js
CHANGED
|
@@ -100,8 +100,7 @@
|
|
|
100
100
|
// Returns flat array of matched elements given one or more selectors
|
|
101
101
|
// Usage: select('.class', '#id')
|
|
102
102
|
// -----------------------------
|
|
103
|
-
// --- Enhanced DOM Selection Utility with Explicit Error Reporting ---
|
|
104
|
-
// --- Enhanced DOM Selection Utility (Supports Multiple Arguments) ---
|
|
103
|
+
// --- Enhanced DOM Selection Utility with Explicit Error Reporting (Supports Multiple Arguments) ---
|
|
105
104
|
const selectDom = function (...selectors) {
|
|
106
105
|
const allElements = [];
|
|
107
106
|
|