├── .eslintrc.yml ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .ndocrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── benchmark ├── benchmark.mjs ├── implementations │ ├── current-match │ │ └── index.mjs │ ├── current-pretest │ │ └── index.mjs │ └── current-test │ │ └── index.mjs ├── profile.mjs └── samples │ ├── email_fuzzy.txt │ ├── link_fuzzy.txt │ ├── link_normal.txt │ ├── many.txt │ └── many_fast.txt ├── index.mjs ├── lib └── re.mjs ├── package.json ├── support ├── build_demo.mjs ├── build_doc.mjs ├── check.mjs ├── demo_template │ ├── index.css │ ├── index.html │ ├── index.mjs │ └── rollup.config.mjs ├── rollup.config.mjs └── tlds_2char_gen.mjs └── test ├── cjs.js ├── fixtures ├── links.txt └── not_links.txt └── test.mjs /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | demo/ 4 | doc/ 5 | build/ 6 | *.log 7 | -------------------------------------------------------------------------------- /.ndocrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/.ndocrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/benchmark.mjs -------------------------------------------------------------------------------- /benchmark/implementations/current-match/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/implementations/current-match/index.mjs -------------------------------------------------------------------------------- /benchmark/implementations/current-pretest/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/implementations/current-pretest/index.mjs -------------------------------------------------------------------------------- /benchmark/implementations/current-test/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/implementations/current-test/index.mjs -------------------------------------------------------------------------------- /benchmark/profile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/profile.mjs -------------------------------------------------------------------------------- /benchmark/samples/email_fuzzy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/samples/email_fuzzy.txt -------------------------------------------------------------------------------- /benchmark/samples/link_fuzzy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/samples/link_fuzzy.txt -------------------------------------------------------------------------------- /benchmark/samples/link_normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/samples/link_normal.txt -------------------------------------------------------------------------------- /benchmark/samples/many.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/samples/many.txt -------------------------------------------------------------------------------- /benchmark/samples/many_fast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/benchmark/samples/many_fast.txt -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/index.mjs -------------------------------------------------------------------------------- /lib/re.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/lib/re.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/package.json -------------------------------------------------------------------------------- /support/build_demo.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/build_demo.mjs -------------------------------------------------------------------------------- /support/build_doc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/build_doc.mjs -------------------------------------------------------------------------------- /support/check.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/check.mjs -------------------------------------------------------------------------------- /support/demo_template/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/demo_template/index.css -------------------------------------------------------------------------------- /support/demo_template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/demo_template/index.html -------------------------------------------------------------------------------- /support/demo_template/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/demo_template/index.mjs -------------------------------------------------------------------------------- /support/demo_template/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/demo_template/rollup.config.mjs -------------------------------------------------------------------------------- /support/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/rollup.config.mjs -------------------------------------------------------------------------------- /support/tlds_2char_gen.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/support/tlds_2char_gen.mjs -------------------------------------------------------------------------------- /test/cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/test/cjs.js -------------------------------------------------------------------------------- /test/fixtures/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/test/fixtures/links.txt -------------------------------------------------------------------------------- /test/fixtures/not_links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/test/fixtures/not_links.txt -------------------------------------------------------------------------------- /test/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/linkify-it/HEAD/test/test.mjs --------------------------------------------------------------------------------