├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── bin └── twist.js ├── index.js ├── lib ├── state.js ├── update.js └── view.js ├── package.json └── test ├── fixed └── loser.js ├── index.test.js ├── msg └── index.js ├── state.test.js ├── twist.test.js └── update.test.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/README.md -------------------------------------------------------------------------------- /bin/twist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/bin/twist.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/index.js -------------------------------------------------------------------------------- /lib/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/lib/state.js -------------------------------------------------------------------------------- /lib/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/lib/update.js -------------------------------------------------------------------------------- /lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/lib/view.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/package.json -------------------------------------------------------------------------------- /test/fixed/loser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/test/fixed/loser.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/msg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/test/msg/index.js -------------------------------------------------------------------------------- /test/state.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/test/state.test.js -------------------------------------------------------------------------------- /test/twist.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/test/twist.test.js -------------------------------------------------------------------------------- /test/update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/twist/HEAD/test/update.test.js --------------------------------------------------------------------------------