├── .gitignore ├── .travis.yml ├── Jakefile ├── README.md ├── bin └── cli.js ├── index.js ├── package.json └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mde/true/HEAD/.travis.yml -------------------------------------------------------------------------------- /Jakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mde/true/HEAD/Jakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mde/true/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mde/true/HEAD/bin/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = () => true 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mde/true/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mde/true/HEAD/test/index.js --------------------------------------------------------------------------------