===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-axios-0.21.0+dfsg/README.md-793-
node-axios-0.21.0+dfsg/README.md:794:axios is heavily inspired by the [$http service](https://docs.angularjs.org/api/ng/service/$http) provided in [Angular](https://angularjs.org/). Ultimately axios is an effort to provide a standalone `$http`-like service for use outside of Angular.
node-axios-0.21.0+dfsg/README.md-795-
##############################################
node-axios-0.21.0+dfsg/sandbox/server.js-73-
node-axios-0.21.0+dfsg/sandbox/server.js:74:server.listen(PORT, console.log(`Listening on localhost:${PORT}...`));
node-axios-0.21.0+dfsg/sandbox/server.js-75-server.on('error', (error) => {
node-axios-0.21.0+dfsg/sandbox/server.js-76-  if (error.code === 'EADDRINUSE') {
node-axios-0.21.0+dfsg/sandbox/server.js:77:    console.log(`Address localhost:${PORT} in use please retry when the port is available!`);
node-axios-0.21.0+dfsg/sandbox/server.js-78-    server.close();
##############################################
node-axios-0.21.0+dfsg/test/typescript/axios.ts-317-
node-axios-0.21.0+dfsg/test/typescript/axios.ts:318:const fn1 = (a: number, b: number, c: number) => `${a}-${b}-${c}`;
node-axios-0.21.0+dfsg/test/typescript/axios.ts-319-const fn2: (arr: number[]) => string = axios.spread(fn1);
##############################################
node-axios-0.21.0+dfsg/test/unit/adapters/http.js-424-      }).catch(function (err) {
node-axios-0.21.0+dfsg/test/unit/adapters/http.js:425:        assert.equal(err.message, `ENOENT: no such file or directory, open \'${notExitPath}\'`);
node-axios-0.21.0+dfsg/test/unit/adapters/http.js-426-        done();