Liking cljdoc? Tell your friends :D

Build Status Open Issues Average time to resolve an issue License Dependencies Status

CLJ-2253

This library implements a workaround for CLJ-2253. Simply require (or use) this namespace before using slurp and you're done.

Installation

CLJ-2253 is available as a Maven artifact from Clojars. Plonk the following in your project.clj :dependencies, lein deps and you should be good to go:

[org.clojars.pmonks/clj-2253 "#.#.#"]   ; Where #.#.# is replaced with an actual version number

The latest released version is:

Clojars Project

Trying it Out

Alternatively, you may prefer to kick the library's tyres without creating a project. This is a snap with the awesome lein try plugin:

$ lein try org.clojars.pmonks/clj-2253 "0.1.0-SNAPSHOT"

You will be dropped in a REPL with the library downloaded and ready for use.

Usage

The functionality is provided by a single namespace, CLJ-2253, that will work its hacky magic as soon as its loaded.

Require it in the REPL (incl. a lein try REPL):

(require '[CLJ-2253])

Require it in your project:

(ns my-app.core
  (:require [CLJ-2253]))

Contributor Information

GitHub project

Bug Tracker

License

Copyright 2018 Peter Monks

Distributed under the Apache License, Version 2.0.

SPDX-License-Identifier: Apache-2.0

3rd Party Licenses

To see the full list of licenses of all third party libraries used by this project, please run:

$ lein licenses :csv | cut -d , -f3 | sort | uniq

To see the dependencies and licenses in detail, run:

$ lein licenses

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close