├── .gitignore ├── .nvmrc ├── DISCLAIMER.md ├── LICENSE ├── akamai-bm.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | .idea 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.16.0 -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botswin/Akamai-Reverse/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botswin/Akamai-Reverse/HEAD/LICENSE -------------------------------------------------------------------------------- /akamai-bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botswin/Akamai-Reverse/HEAD/akamai-bm.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botswin/Akamai-Reverse/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botswin/Akamai-Reverse/HEAD/readme.md --------------------------------------------------------------------------------