├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE-MIT ├── Makefile ├── README.md ├── lib └── fileset.js ├── package.json └── test ├── fixtures ├── an (odd) filename.js └── foo.md └── mocha.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/README.md -------------------------------------------------------------------------------- /lib/fileset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/lib/fileset.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/an (odd) filename.js: -------------------------------------------------------------------------------- 1 | var odd = true; -------------------------------------------------------------------------------- /test/fixtures/foo.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mklabs/node-fileset/HEAD/test/mocha.js --------------------------------------------------------------------------------