├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── @types │ └── package.json.d.ts ├── general.ts ├── index.ts ├── iplugin.ts ├── plugins │ ├── amazon.ts │ ├── branchio-deeplinks.ts │ ├── index.ts │ └── wikipedia.ts ├── summary.ts └── utils │ ├── cleanup-title.ts │ ├── clip.ts │ ├── encoding.ts │ ├── fetch.ts │ ├── got.ts │ ├── misc.ts │ ├── null-or-empty.ts │ ├── redirect-tracer.ts │ └── status-error.ts ├── tsconfig.json ├── tslint.json └── wrangler.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/@types/package.json.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/@types/package.json.d.ts -------------------------------------------------------------------------------- /src/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/general.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/iplugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/iplugin.ts -------------------------------------------------------------------------------- /src/plugins/amazon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/plugins/amazon.ts -------------------------------------------------------------------------------- /src/plugins/branchio-deeplinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/plugins/branchio-deeplinks.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/wikipedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/plugins/wikipedia.ts -------------------------------------------------------------------------------- /src/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/summary.ts -------------------------------------------------------------------------------- /src/utils/cleanup-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/cleanup-title.ts -------------------------------------------------------------------------------- /src/utils/clip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/clip.ts -------------------------------------------------------------------------------- /src/utils/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/encoding.ts -------------------------------------------------------------------------------- /src/utils/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/fetch.ts -------------------------------------------------------------------------------- /src/utils/got.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/got.ts -------------------------------------------------------------------------------- /src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/misc.ts -------------------------------------------------------------------------------- /src/utils/null-or-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/null-or-empty.ts -------------------------------------------------------------------------------- /src/utils/redirect-tracer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/redirect-tracer.ts -------------------------------------------------------------------------------- /src/utils/status-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/src/utils/status-error.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/tslint.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/summaly-workers/HEAD/wrangler.toml --------------------------------------------------------------------------------