├── .gitignore ├── .npmrc ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── nwb.config.js ├── package.json ├── src └── index.js └── test ├── fixture.js └── index.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/README.md -------------------------------------------------------------------------------- /nwb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/nwb.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/src/index.js -------------------------------------------------------------------------------- /test/fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/test/fixture.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insin/get-form-data/HEAD/test/index.test.js --------------------------------------------------------------------------------