select-animation 1.6.1 → 1.6.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "select-animation",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "High-performance JavaScript animation engine for organic & fluid motion",
5
5
  "main": "select-animation.js",
6
6
  "scripts": {
@@ -100,7 +100,8 @@
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 (Supports Multiple Arguments) ---
103
+ // --- Enhanced DOM Selection Utility with Explicit Error Reporting ---
104
+ // --- Enhanced DOM Selection Utility (Supports Multiple Arguments) ---
104
105
  const selectDom = function (...selectors) {
105
106
  const allElements = [];
106
107