├── .gitignore ├── .npmrc ├── .travis.yml ├── LICENSE ├── README.md ├── bench ├── index.js └── lib.js ├── package.json ├── src └── daggy.js └── test └── daggy.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | bin 4 | coverage 5 | docs 6 | node_modules 7 | tags -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/README.md -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/bench/index.js -------------------------------------------------------------------------------- /bench/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/bench/lib.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/package.json -------------------------------------------------------------------------------- /src/daggy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/src/daggy.js -------------------------------------------------------------------------------- /test/daggy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fantasyland/daggy/HEAD/test/daggy.js --------------------------------------------------------------------------------