@skirbi/sugar 0.0.13 → 0.0.14
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/Changes +4 -0
- package/lib/htmlelement.mjs +4 -0
- package/lib/index.mjs +1 -1
- package/package.json +1 -1
package/Changes
CHANGED
package/lib/htmlelement.mjs
CHANGED
|
@@ -333,5 +333,9 @@ export class HTMLElementSugar extends HTMLElement {
|
|
|
333
333
|
if (!item) throw new Error(msg);
|
|
334
334
|
return item;
|
|
335
335
|
}
|
|
336
|
+
|
|
337
|
+
assertQuerySelector(haystack, needle, msg) {
|
|
338
|
+
return this.constructor.assertQuerySelector(haystack, needle, msg);
|
|
339
|
+
}
|
|
336
340
|
}
|
|
337
341
|
|
package/lib/index.mjs
CHANGED
package/package.json
CHANGED