|
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- /**
- * Class list.
- */
- class HTMLCollection extends Array {
- /**
- * Returns item by index.
- *
- * @param index Index.
- */
- item(index) {
- return index >= 0 && this[index] ? this[index] : null;
- }
- }
- exports.default = HTMLCollection;
- //# sourceMappingURL=HTMLCollection.js.map
|