├── .github └── workflows │ ├── codeql-analysis.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── Robots.js ├── SECURITY.md ├── index.d.ts ├── index.js ├── package.json └── test └── Robots.js /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | .vscode -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/README.md -------------------------------------------------------------------------------- /Robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/Robots.js -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/package.json -------------------------------------------------------------------------------- /test/Robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samclarke/robots-parser/HEAD/test/Robots.js --------------------------------------------------------------------------------