├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── logic.js └── test ├── mocha.opts └── simple.js /.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2015"] } 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/package.json -------------------------------------------------------------------------------- /src/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/src/logic.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awto/mfjs-logic/HEAD/test/simple.js --------------------------------------------------------------------------------