===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ruby-rack-cors-1.1.1/test/cors/test.cors.js-8-    it('should allow access to dynamic resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:9:      return $.get(`http://${CORS_SERVER}/`, function(data, status, xhr) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-10-        expect(data).to.eql('Hello world');
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-14-    it('should allow PUT access to dynamic resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:15:      return $.ajax(`http://${CORS_SERVER}/`, {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-16-        type: 'PUT'
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-22-    it('should allow PATCH access to dynamic resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:23:      return $.ajax(`http://${CORS_SERVER}/`, {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-24-        type: 'PATCH'
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-30-    it('should allow HEAD access to dynamic resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:31:      return $.ajax(`http://${CORS_SERVER}/`, {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-32-        type: 'HEAD'
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-38-    it('should allow DELETE access to dynamic resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:39:      return $.ajax(`http://${CORS_SERVER}/`, {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-40-        type: 'DELETE'
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-46-    it('should allow OPTIONS access to dynamic resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:47:      return $.ajax(`http://${CORS_SERVER}/`, {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-48-        type: 'OPTIONS'
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-54-    it('should allow access to static resource', function(done) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js:55:      return $.get(`http://${CORS_SERVER}/static.txt`, function(data, status, xhr) {
ruby-rack-cors-1.1.1/test/cors/test.cors.js-56-        expect($.trim(data)).to.eql("hello world");
##############################################
ruby-rack-cors-1.1.1/test/cors/test.cors.js-62-        type: 'POST',
ruby-rack-cors-1.1.1/test/cors/test.cors.js:63:        url: `http://${CORS_SERVER}/cors`,
ruby-rack-cors-1.1.1/test/cors/test.cors.js-64-        beforeSend: function(xhr) {