├── .gitignore ├── .travis.yml ├── README.md ├── example.js ├── index.js ├── package.json └── test ├── fixture ├── a │ └── b │ │ └── c │ │ ├── d.txt │ │ └── e.txt └── ignore │ └── .dat │ ├── beep.txt │ └── hi └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/hyperdrive-import-files/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/hyperdrive-import-files/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/hyperdrive-import-files/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/hyperdrive-import-files/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/hyperdrive-import-files/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/a/b/c/d.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/fixture/a/b/c/e.txt: -------------------------------------------------------------------------------- 1 | beep 2 | -------------------------------------------------------------------------------- /test/fixture/ignore/.dat/beep.txt: -------------------------------------------------------------------------------- 1 | boop -------------------------------------------------------------------------------- /test/fixture/ignore/.dat/hi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dat-ecosystem-archive/hyperdrive-import-files/HEAD/test/index.js --------------------------------------------------------------------------------