├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.js ├── package.json ├── test ├── call.js ├── clear.js ├── delete.js ├── initialise.js ├── pause.js ├── repeat.js ├── trigger-resume.js ├── trigger-stop.js └── type.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | example/* linguist-documentation 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output/ 3 | coverage/ 4 | node_modules/ 5 | *.log 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/package.json -------------------------------------------------------------------------------- /test/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/call.js -------------------------------------------------------------------------------- /test/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/clear.js -------------------------------------------------------------------------------- /test/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/delete.js -------------------------------------------------------------------------------- /test/initialise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/initialise.js -------------------------------------------------------------------------------- /test/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/pause.js -------------------------------------------------------------------------------- /test/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/repeat.js -------------------------------------------------------------------------------- /test/trigger-resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/trigger-resume.js -------------------------------------------------------------------------------- /test/trigger-stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/trigger-stop.js -------------------------------------------------------------------------------- /test/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/test/type.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanqing/malarkey/HEAD/yarn.lock --------------------------------------------------------------------------------