├── .gitignore ├── LICENSE ├── README.md ├── project.clj ├── src └── if_let │ └── core.clj └── test └── if_let └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockedOn/if-let/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockedOn/if-let/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockedOn/if-let/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockedOn/if-let/HEAD/project.clj -------------------------------------------------------------------------------- /src/if_let/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockedOn/if-let/HEAD/src/if_let/core.clj -------------------------------------------------------------------------------- /test/if_let/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockedOn/if-let/HEAD/test/if_let/core_test.clj --------------------------------------------------------------------------------