├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── deps.edn ├── project.clj ├── scripts ├── build ├── build.clj ├── repl ├── repl.clj ├── watch └── watch.clj ├── src └── superstring │ ├── core.clj │ └── core.cljs └── test └── superstring ├── core_test.cljc └── test_helpers.clj /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- 1 | {:paths ["src"]} 2 | -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/project.clj -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/build.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/scripts/build.clj -------------------------------------------------------------------------------- /scripts/repl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/scripts/repl -------------------------------------------------------------------------------- /scripts/repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/scripts/repl.clj -------------------------------------------------------------------------------- /scripts/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/scripts/watch -------------------------------------------------------------------------------- /scripts/watch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/scripts/watch.clj -------------------------------------------------------------------------------- /src/superstring/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/src/superstring/core.clj -------------------------------------------------------------------------------- /src/superstring/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/src/superstring/core.cljs -------------------------------------------------------------------------------- /test/superstring/core_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/test/superstring/core_test.cljc -------------------------------------------------------------------------------- /test/superstring/test_helpers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expez/superstring/HEAD/test/superstring/test_helpers.clj --------------------------------------------------------------------------------