shikari
Version:
Shikari is a library that provides a way to generate a CSS selector of a given DOM element
12 lines (11 loc) • 377 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var FullSelector = (function () {
function FullSelector() {
}
FullSelector.prototype.toString = function () {
return this.tagSelector + this.classNameSelectors.join("") + this.nthChildSelector;
};
return FullSelector;
}());
exports.FullSelector = FullSelector;