重构获取元素选择器功能,优化最优 CSS 选择器算法。

This commit is contained in:
fofolee
2025-01-22 21:29:41 +08:00
parent b33ef1be7f
commit c3ca34bd2a
4 changed files with 1952 additions and 81 deletions

View File

@@ -1,3 +1,7 @@
const browser = require("./browser");
const getSelector = require("./getSelector");
module.exports = browser;
module.exports = {
...browser,
...getSelector,
};