├── .gitignore ├── CHANGES.md ├── README.md ├── browser-example ├── Scrubbing.min.js ├── demo.css ├── demo.html └── units.edn ├── dev └── user.clj ├── examples ├── browser │ └── frinj.cljs ├── examples-infix.clj ├── examples.clj └── node │ ├── example.cljs │ └── externs.js ├── project.clj ├── resources ├── units.edn └── units.txt ├── src └── frinj │ ├── core.clj │ ├── cross.clj │ ├── feeds.clj │ ├── infix.clj │ ├── jvm.clj │ ├── node.cljs │ ├── ops.clj │ ├── parser.clj │ └── repl.clj └── test └── frinj └── test ├── core_test.clj ├── ops.clj ├── parser.clj ├── pfxnorm.clj └── samplecalc.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/CHANGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/README.md -------------------------------------------------------------------------------- /browser-example/Scrubbing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/browser-example/Scrubbing.min.js -------------------------------------------------------------------------------- /browser-example/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/browser-example/demo.css -------------------------------------------------------------------------------- /browser-example/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/browser-example/demo.html -------------------------------------------------------------------------------- /browser-example/units.edn: -------------------------------------------------------------------------------- 1 | ../resources/units.edn -------------------------------------------------------------------------------- /dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/dev/user.clj -------------------------------------------------------------------------------- /examples/browser/frinj.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/examples/browser/frinj.cljs -------------------------------------------------------------------------------- /examples/examples-infix.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/examples/examples-infix.clj -------------------------------------------------------------------------------- /examples/examples.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/examples/examples.clj -------------------------------------------------------------------------------- /examples/node/example.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/examples/node/example.cljs -------------------------------------------------------------------------------- /examples/node/externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/examples/node/externs.js -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/project.clj -------------------------------------------------------------------------------- /resources/units.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/resources/units.edn -------------------------------------------------------------------------------- /resources/units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/resources/units.txt -------------------------------------------------------------------------------- /src/frinj/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/core.clj -------------------------------------------------------------------------------- /src/frinj/cross.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/cross.clj -------------------------------------------------------------------------------- /src/frinj/feeds.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/feeds.clj -------------------------------------------------------------------------------- /src/frinj/infix.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/infix.clj -------------------------------------------------------------------------------- /src/frinj/jvm.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/jvm.clj -------------------------------------------------------------------------------- /src/frinj/node.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/node.cljs -------------------------------------------------------------------------------- /src/frinj/ops.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/ops.clj -------------------------------------------------------------------------------- /src/frinj/parser.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/parser.clj -------------------------------------------------------------------------------- /src/frinj/repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/src/frinj/repl.clj -------------------------------------------------------------------------------- /test/frinj/test/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/test/frinj/test/core_test.clj -------------------------------------------------------------------------------- /test/frinj/test/ops.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/test/frinj/test/ops.clj -------------------------------------------------------------------------------- /test/frinj/test/parser.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/test/frinj/test/parser.clj -------------------------------------------------------------------------------- /test/frinj/test/pfxnorm.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/test/frinj/test/pfxnorm.clj -------------------------------------------------------------------------------- /test/frinj/test/samplecalc.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martintrojer/frinj/HEAD/test/frinj/test/samplecalc.clj --------------------------------------------------------------------------------