├── .gitignore ├── .travis.yml ├── .zuul.yml ├── History.md ├── Readme.md ├── bower.json ├── component.json ├── example.html ├── index.js ├── package.json └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/.zuul.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/History.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/Readme.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/bower.json -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/component.json -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/example.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nulltask/pseudo-function/HEAD/test/index.js --------------------------------------------------------------------------------