├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.cjs ├── index.d.ts ├── index.js ├── package.json ├── prettier.config.cjs └── test.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/README.md -------------------------------------------------------------------------------- /index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/index.cjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KittyGiraudel/focusable-selectors/HEAD/test.js --------------------------------------------------------------------------------