[
  {
    "path": ".eslintignore",
    "content": "coverage\nnode_modules\n"
  },
  {
    "path": ".eslintrc.yml",
    "content": "root: true\nextends: standard\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: ci\n\non:\n- pull_request\n- push\n\npermissions:\n  contents: read\n\njobs:\n  test:\n    permissions:\n      checks: write  # for coverallsapp/github-action to create new checks\n      contents: read  # for actions/checkout to fetch code\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        name:\n        - Node.js 0.6\n        - Node.js 0.8\n        - Node.js 0.10\n        - Node.js 0.12\n        - io.js 1.x\n        - io.js 2.x\n        - io.js 3.x\n        - Node.js 4.x\n        - Node.js 5.x\n        - Node.js 6.x\n        - Node.js 7.x\n        - Node.js 8.x\n        - Node.js 9.x\n        - Node.js 10.x\n        - Node.js 11.x\n        - Node.js 12.x\n        - Node.js 13.x\n        - Node.js 14.x\n        - Node.js 15.x\n        - Node.js 16.x\n        - Node.js 17.x\n        - Node.js 18.x\n        - Node.js 19.x\n        - Node.js 20.x\n        - Node.js 21.x\n\n        include:\n        - name: Node.js 0.6\n          node-version: \"0.6\"\n          npm-i: mocha@1.21.5\n          npm-rm: nyc\n\n        - name: Node.js 0.8\n          node-version: \"0.8\"\n          npm-i: mocha@2.5.3\n          npm-rm: nyc\n\n        - name: Node.js 0.10\n          node-version: \"0.10\"\n          npm-i: mocha@3.5.3 nyc@10.3.2\n\n        - name: Node.js 0.12\n          node-version: \"0.12\"\n          npm-i: mocha@3.5.3 nyc@10.3.2\n\n        - name: io.js 1.x\n          node-version: \"1.8\"\n          npm-i: mocha@3.5.3 nyc@10.3.2\n\n        - name: io.js 2.x\n          node-version: \"2.5\"\n          npm-i: mocha@3.5.3 nyc@10.3.2\n\n        - name: io.js 3.x\n          node-version: \"3.3\"\n          npm-i: mocha@3.5.3 nyc@10.3.2\n\n        - name: Node.js 4.x\n          node-version: \"4.9\"\n          npm-i: mocha@5.2.0 nyc@11.9.0\n\n        - name: Node.js 5.x\n          node-version: \"5.12\"\n          npm-i: mocha@5.2.0 nyc@11.9.0\n\n        - name: Node.js 6.x\n          node-version: \"6.17\"\n          npm-i: mocha@6.2.2 nyc@14.1.1\n\n        - name: Node.js 7.x\n          node-version: \"7.10\"\n          npm-i: mocha@6.2.2 nyc@14.1.1\n\n        - name: Node.js 8.x\n          node-version: \"8.17\"\n          npm-i: mocha@7.1.2 nyc@14.1.1\n\n        - name: Node.js 9.x\n          node-version: \"9.11\"\n          npm-i: mocha@7.1.2 nyc@14.1.1\n\n        - name: Node.js 10.x\n          node-version: \"10.24\"\n          npm-i: mocha@8.4.0\n\n        - name: Node.js 11.x\n          node-version: \"11.15\"\n          npm-i: mocha@8.4.0\n\n        - name: Node.js 12.x\n          node-version: \"12.22\"\n          npm-i: mocha@9.2.2\n\n        - name: Node.js 13.x\n          node-version: \"13.14\"\n          npm-i: mocha@9.2.2\n\n        - name: Node.js 14.x\n          node-version: \"14.21\"\n\n        - name: Node.js 15.x\n          node-version: \"15.14\"\n\n        - name: Node.js 16.x\n          node-version: \"16.20\"\n\n        - name: Node.js 17.x\n          node-version: \"17.9\"\n\n        - name: Node.js 18.x\n          node-version: \"18.18\"\n\n        - name: Node.js 19.x\n          node-version: \"19.9\"\n\n        - name: Node.js 20.x\n          node-version: \"20.9\"\n\n        - name: Node.js 21.x\n          node-version: \"21.1\"\n\n    steps:\n    - uses: actions/checkout@v3\n\n    - name: Install Node.js ${{ matrix.node-version }}\n      shell: bash -eo pipefail -l {0}\n      run: |\n        if [[ \"${{ matrix.node-version }}\" == 0.6* ]]; then\n          sudo sh -c 'echo \"deb http://us.archive.ubuntu.com/ubuntu/ bionic universe\" >> /etc/apt/sources.list'\n          sudo sh -c 'echo \"deb http://security.ubuntu.com/ubuntu bionic-security main\" >> /etc/apt/sources.list'\n          sudo apt-get update\n          sudo apt-get install g++-4.8 gcc-4.8 libssl1.0-dev python2 python-is-python2\n          export CC=/usr/bin/gcc-4.8\n          export CXX=/usr/bin/g++-4.8\n        fi\n        nvm install --default ${{ matrix.node-version }}\n        if [[ \"${{ matrix.node-version }}\" == 0.* && \"$(cut -d. -f2 <<< \"${{ matrix.node-version }}\")\" -lt 10 ]]; then\n          nvm install --alias=npm 0.10\n          nvm use ${{ matrix.node-version }}\n          if [[ \"$(npm -v)\" == 1.1.* ]]; then\n            nvm exec npm npm install -g npm@1.1\n            ln -fs \"$(which npm)\" \"$(dirname \"$(nvm which npm)\")/npm\"\n          else\n            sed -i '1s;^.*$;'\"$(printf '#!%q' \"$(nvm which npm)\")\"';' \"$(readlink -f \"$(which npm)\")\"\n          fi\n          npm config set strict-ssl false\n        fi\n        dirname \"$(nvm which ${{ matrix.node-version }})\" >> \"$GITHUB_PATH\"\n\n    - name: Configure npm\n      run: |\n        if [[ \"$(npm config get package-lock)\" == \"true\" ]]; then\n          npm config set package-lock false\n        else\n          npm config set shrinkwrap false\n        fi\n\n    - name: Remove npm module(s) ${{ matrix.npm-rm }}\n      run: npm rm --silent --save-dev ${{ matrix.npm-rm }}\n      if: matrix.npm-rm != ''\n\n    - name: Install npm module(s) ${{ matrix.npm-i }}\n      run: npm install --save-dev ${{ matrix.npm-i }}\n      if: matrix.npm-i != ''\n\n    - name: Setup Node.js version-specific dependencies\n      shell: bash\n      run: |\n        # eslint for linting\n        # - remove on Node.js < 12\n        if [[ \"$(cut -d. -f1 <<< \"${{ matrix.node-version }}\")\" -lt 12 ]]; then\n          node -pe 'Object.keys(require(\"./package\").devDependencies).join(\"\\n\")' | \\\n            grep -E '^eslint(-|$)' | \\\n            sort -r | \\\n            xargs -n1 npm rm --silent --save-dev\n        fi\n\n    - name: Install Node.js dependencies\n      run: npm install\n\n    - name: Install browserify\n      run: |\n        if [[ \"$(cut -d. -f1 <<< \"${{ matrix.node-version }}\")\" -ge 1 ]]; then\n          npm install --save-dev browserify@16\n        fi\n\n    - name: List environment\n      id: list_env\n      shell: bash\n      run: |\n        echo \"node@$(node -v)\"\n        echo \"npm@$(npm -v)\"\n        npm -s ls ||:\n        (npm -s ls --depth=0 ||:) | awk -F'[ @]' 'NR>1 && $2 { print $2 \"=\" $3 }' >> \"$GITHUB_OUTPUT\"\n\n    - name: Run tests\n      shell: bash\n      run: |\n        if npm -ps ls nyc | grep -q nyc; then\n          npm run test-ci\n        else\n          npm test\n        fi\n\n    - name: Lint code\n      if: steps.list_env.outputs.eslint != ''\n      run: npm run lint\n\n    - name: Collect code coverage\n      uses: coverallsapp/github-action@master\n      if: steps.list_env.outputs.nyc != ''\n      with:\n        github-token: ${{ secrets.GITHUB_TOKEN }}\n        flag-name: run-${{ matrix.test_number }}\n        parallel: true\n\n  coverage:\n    permissions:\n      checks: write  # for coverallsapp/github-action to create new checks\n    needs: test\n    runs-on: ubuntu-latest\n    steps:\n    - name: Upload code coverage\n      uses: coverallsapp/github-action@master\n      with:\n        github-token: ${{ secrets.github_token }}\n        parallel-finished: true\n"
  },
  {
    "path": ".github/workflows/codeql.yml",
    "content": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages in your repository. Please check\n# the `language` matrix defined below to confirm you have the correct set of\n# supported CodeQL languages.\n#\nname: \"CodeQL\"\n\non:\n  push:\n    branches: [\"master\"]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [\"master\"]\n  schedule:\n    - cron: \"0 0 * * 1\"\n\npermissions:\n  contents: read\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n    permissions:\n      actions: read\n      contents: read\n      security-events: write\n\n    strategy:\n      fail-fast: false\n      matrix:\n        language: [\"javascript\"]\n        # CodeQL supports [ $supported-codeql-languages ]\n        # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support\n\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      # Initializes the CodeQL tools for scanning.\n      - name: Initialize CodeQL\n        uses: github/codeql-action/init@v4.32.4\n        with:\n          languages: ${{ matrix.language }}\n          # If you wish to specify custom queries, you can do so here or in a config file.\n          # By default, queries listed here will override any specified in a config file.\n          # Prefix the list here with \"+\" to use these queries and those in the config file.\n\n      # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).\n      # If this step fails, then you should remove it and run the build manually (see below)\n      - name: Autobuild\n        uses: github/codeql-action/autobuild@v4.32.4\n\n      # ℹ️ Command-line programs to run using the OS shell.\n      # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun\n\n      #   If the Autobuild fails above, remove it and uncomment the following three lines.\n      #   modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.\n\n      # - run: |\n      #   echo \"Run, Build Application using script\"\n      #   ./location_of_script_within_repo/buildscript.sh\n\n      - name: Perform CodeQL Analysis\n        uses: github/codeql-action/analyze@v4.32.4\n        with:\n          category: \"/language:${{matrix.language}}\"\n"
  },
  {
    "path": ".github/workflows/scorecard.yml",
    "content": "# This workflow uses actions that are not certified by GitHub. They are provided\n# by a third-party and are governed by separate terms of service, privacy\n# policy, and support documentation.\n\nname: Scorecard supply-chain security\non:\n  # For Branch-Protection check. Only the default branch is supported. See\n  # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection\n  branch_protection_rule:\n  # To guarantee Maintained check is occasionally updated. See\n  # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained\n  schedule:\n    - cron: '16 21 * * 1'\n  push:\n    branches: [ \"master\" ]\n\n# Declare default permissions as read only.\npermissions: read-all\n\njobs:\n  analysis:\n    name: Scorecard analysis\n    runs-on: ubuntu-latest\n    permissions:\n      # Needed to upload the results to code-scanning dashboard.\n      security-events: write\n      # Needed to publish results and get a badge (see publish_results below).\n      id-token: write\n      # Uncomment the permissions below if installing in a private repository.\n      # contents: read\n      # actions: read\n\n    steps:\n      - name: \"Checkout code\"\n        uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0\n        with:\n          persist-credentials: false\n\n      - name: \"Run analysis\"\n        uses: ossf/scorecard-action@99c53751e09b9529366343771cc321ec74e9bd3d # v2.0.6\n        with:\n          results_file: results.sarif\n          results_format: sarif\n          # (Optional) \"write\" PAT token. Uncomment the `repo_token` line below if:\n          # - you want to enable the Branch-Protection check on a *public* repository, or\n          # - you are installing Scorecard on a *private* repository\n          # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.\n          # repo_token: ${{ secrets.SCORECARD_TOKEN }}\n\n          # Public repositories:\n          #   - Publish results to OpenSSF REST API for easy access by consumers\n          #   - Allows the repository to include the Scorecard badge.\n          #   - See https://github.com/ossf/scorecard-action#publishing-results.\n          # For private repositories:\n          #   - `publish_results` will always be set to `false`, regardless\n          #     of the value entered here.\n          publish_results: true\n\n      # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF\n      # format to the repository Actions tab.\n      - name: \"Upload artifact\"\n        uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0\n        with:\n          name: SARIF file\n          path: results.sarif\n          retention-days: 5\n\n      # Upload the results to GitHub's code scanning dashboard.\n      - name: \"Upload to code-scanning\"\n        uses: github/codeql-action/upload-sarif@45580472a5bb82c4681c4ac726cfdb60060c2ee1 # v3.32.4\n        with:\n          sarif_file: results.sarif"
  },
  {
    "path": ".gitignore",
    "content": "\n.DS_Store*\n*.log\n*.gz\n\nnode_modules\ncoverage\ncache\n\npackage-lock.json\n"
  },
  {
    "path": "HISTORY.md",
    "content": "1.1.2 / 2016-01-17\n==================\n\n  * perf: enable strict mode\n\n1.1.1 / 2014-12-30\n==================\n\n  * Improve `browserify` support\n\n1.1.0 / 2014-07-05\n==================\n\n  * Add `CONNECT` method\n \n1.0.1 / 2014-06-02\n==================\n\n  * Fix module to work with harmony transform\n\n1.0.0 / 2014-05-08\n==================\n\n  * Add `PURGE` method\n\n0.1.0 / 2013-10-28\n==================\n\n  * Add `http.METHODS` support\n"
  },
  {
    "path": "LICENSE",
    "content": "(The MIT License)\n\nCopyright (c) 2013-2014 TJ Holowaychuk <tj@vision-media.ca>\nCopyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n"
  },
  {
    "path": "README.md",
    "content": "# Methods\n\n[![NPM Version][npm-version-image]][npm-url]\n[![NPM Downloads][npm-downloads-image]][npm-url]\n[![Node.js Version][node-image]][node-url]\n[![Build Status][ci-image]][ci-url]\n[![Coverage Status][coveralls-image]][coveralls-url]\n\nHTTP verbs that Node.js core's HTTP parser supports.\n\nThis module provides an export that is just like `http.METHODS` from Node.js core,\nwith the following differences:\n\n  * All method names are lower-cased.\n  * Contains a fallback list of methods for Node.js versions that do not have a\n    `http.METHODS` export (0.10 and lower).\n  * Provides the fallback list when using tools like `browserify` without pulling\n    in the `http` shim module.\n\n## Install\n\nThis is a [Node.js](https://nodejs.org/en/) module available through the\n[npm registry](https://www.npmjs.com/). Installation is done using the\n[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):\n\n```sh\n$ npm install methods\n```\n\n## API\n\n```js\nvar methods = require('methods')\n```\n\n### methods\n\nThis is an array of lower-cased method names that Node.js supports. If Node.js\nprovides the `http.METHODS` export, then this is the same array lower-cased,\notherwise it is a snapshot of the verbs from Node.js 0.10.\n\n## License\n\n[MIT](LICENSE)\n\n[ci-image]: https://badgen.net/github/checks/jshttp/methods/master?label=ci\n[ci-url]: https://github.com/jshttp/methods/actions/workflows/ci.yml\n[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/methods/master\n[coveralls-url]: https://coveralls.io/r/jshttp/methods?branch=master\n[node-image]: https://badgen.net/npm/node/methods\n[node-url]: https://nodejs.org/en/download\n[npm-downloads-image]: https://badgen.net/npm/dm/methods\n[npm-url]: https://npmjs.org/package/methods\n[npm-version-image]: https://badgen.net/npm/v/methods\n"
  },
  {
    "path": "index.js",
    "content": "/*!\n * methods\n * Copyright(c) 2013-2014 TJ Holowaychuk\n * Copyright(c) 2015-2016 Douglas Christopher Wilson\n * MIT Licensed\n */\n\n'use strict'\n\n/**\n * Module dependencies.\n * @private\n */\n\nvar http = require('http')\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = getCurrentNodeMethods() || getBasicNodeMethods()\n\n/**\n * Get the current Node.js methods.\n * @private\n */\n\nfunction getCurrentNodeMethods () {\n  return http.METHODS && http.METHODS.map(function lowerCaseMethod (method) {\n    return method.toLowerCase()\n  })\n}\n\n/**\n * Get the \"basic\" Node.js methods, a snapshot from Node.js 0.10.\n * @private\n */\n\nfunction getBasicNodeMethods () {\n  return [\n    'get',\n    'post',\n    'put',\n    'head',\n    'delete',\n    'options',\n    'trace',\n    'copy',\n    'lock',\n    'mkcol',\n    'move',\n    'purge',\n    'propfind',\n    'proppatch',\n    'unlock',\n    'report',\n    'mkactivity',\n    'checkout',\n    'merge',\n    'm-search',\n    'notify',\n    'subscribe',\n    'unsubscribe',\n    'patch',\n    'search',\n    'connect'\n  ]\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"methods\",\n  \"description\": \"HTTP methods that node supports\",\n  \"version\": \"1.1.2\",\n  \"contributors\": [\n    \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n    \"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)\",\n    \"TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)\"\n  ],\n  \"license\": \"MIT\",\n  \"repository\": \"jshttp/methods\",\n  \"devDependencies\": {\n    \"eslint\": \"4.19.1\",\n    \"eslint-config-standard\": \"11.0.0\",\n    \"eslint-plugin-import\": \"2.13.0\",\n    \"eslint-plugin-node\": \"6.0.1\",\n    \"eslint-plugin-promise\": \"3.8.0\",\n    \"eslint-plugin-standard\": \"3.1.0\",\n    \"mocha\": \"10.2.0\",\n    \"nyc\": \"15.1.0\"\n  },\n  \"files\": [\n    \"index.js\",\n    \"HISTORY.md\",\n    \"LICENSE\"\n  ],\n  \"engines\": {\n    \"node\": \">= 0.6\"\n  },\n  \"scripts\": {\n    \"lint\": \"eslint .\",\n    \"test\": \"mocha --reporter spec --bail --check-leaks test/\",\n    \"test-ci\": \"nyc --reporter=lcov --reporter=text npm test\",\n    \"test-cov\": \"nyc --reporter=html --reporter=text npm test\"\n  },\n  \"browser\": {\n    \"http\": false\n  },\n  \"keywords\": [\n    \"http\",\n    \"methods\"\n  ]\n}\n"
  },
  {
    "path": "test/.eslintrc.yml",
    "content": "env:\n  mocha: true\n"
  },
  {
    "path": "test/browserify.js",
    "content": "var assert = require('assert')\nvar browserify = tryRequire('browserify')\nvar istanbul = tryRequire('istanbul')\nvar methods = null\nvar path = require('path')\nvar run = browserify ? describe : describe.skip\nvar stream = require('stream')\nvar vm = require('vm')\n\nrun('when browserified', function () {\n  before(function (done) {\n    var b = browserify()\n    var c = {}\n\n    // instrument\n    if (istanbul && getCoverageGlobal()) {\n      b.transform(istanbulify(c))\n    }\n\n    // require methods\n    b.require(path.join(__dirname, '..'), {\n      expose: 'methods'\n    })\n\n    // bundle and eval\n    b.bundle(function (err, buf) {\n      if (err) return done(err)\n      var require = vm.runInNewContext(buf.toString(), c)\n      methods = require('methods')\n      done()\n    })\n  })\n\n  describe('methods', function () {\n    ['get', 'post', 'put', 'patch', 'delete'].forEach(function (method) {\n      it('should contain \"' + method + '\"', function () {\n        assert.notEqual(methods.indexOf(method), -1)\n      })\n    })\n\n    it('should only have lower-case entries', function () {\n      for (var i = 0; i < methods.length; i++) {\n        assert(methods[i], methods[i].toLowerCase(), methods[i] + ' is lower-case')\n      }\n    })\n  })\n})\n\nfunction getCoverageGlobal () {\n  for (var key in global) {\n    if (key.substr(0, 6) === '$$cov_') {\n      return global[key]\n    }\n  }\n}\n\nfunction istanbulify (context) {\n  // link coverage\n  context.__coverage__ = getCoverageGlobal()\n\n  // browserify transform\n  return function (file) {\n    var chunks = []\n    var instrumenter = new istanbul.Instrumenter()\n    var transformer = new stream.Transform()\n\n    // buffer chunks\n    transformer._transform = function _transform (data, encoding, callback) {\n      chunks.push(data)\n      callback()\n    }\n\n    // transform on flush\n    transformer._flush = function _flush (callback) {\n      var contents = Buffer.concat(chunks).toString()\n      instrumenter.instrument(contents, file, function (err, output) {\n        if (err) return transformer.emit('error', err)\n        transformer.push(output)\n        transformer.push(null)\n        callback()\n      })\n    }\n\n    return transformer\n  }\n}\n\nfunction tryRequire (name) {\n  try {\n    return require(name)\n  } catch (e) {\n    return undefined\n  }\n}\n"
  },
  {
    "path": "test/methods.js",
    "content": "var http = require('http')\nvar assert = require('assert')\nvar methods = require('..')\n\ndescribe('methods', function () {\n  if (http.METHODS) {\n    it('is a lowercased http.METHODS', function () {\n      var lowercased = http.METHODS.map(function (method) {\n        return method.toLowerCase()\n      })\n      assert.deepEqual(lowercased, methods)\n    })\n  } else {\n    it('contains GET, POST, PUT, and DELETE', function () {\n      assert.notEqual(methods.indexOf('get'), -1)\n      assert.notEqual(methods.indexOf('post'), -1)\n      assert.notEqual(methods.indexOf('put'), -1)\n      assert.notEqual(methods.indexOf('delete'), -1)\n    })\n\n    it('is all lowercase', function () {\n      for (var i = 0; i < methods.length; i++) {\n        assert(methods[i], methods[i].toLowerCase(), methods[i] + \" isn't all lowercase\")\n      }\n    })\n  }\n})\n"
  }
]