├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── basic.js ├── files ├── a.txt ├── ffffff.png ├── test.svg └── test2.svg └── util └── mock-s3.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/files/a.txt: -------------------------------------------------------------------------------- 1 | content -------------------------------------------------------------------------------- /test/files/ffffff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/test/files/ffffff.png -------------------------------------------------------------------------------- /test/files/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/test/files/test.svg -------------------------------------------------------------------------------- /test/files/test2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/test/files/test2.svg -------------------------------------------------------------------------------- /test/util/mock-s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anacronw/multer-s3/HEAD/test/util/mock-s3.js --------------------------------------------------------------------------------