From b4533dad0dabe3ef17a554def8ec544b2785c524 Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 7 Oct 2014 18:34:58 -0400 Subject: [PATCH] add beginnings of a common place for all standard extensions --- src/clj_pebble/standard_extensions.clj | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/clj_pebble/standard_extensions.clj diff --git a/src/clj_pebble/standard_extensions.clj b/src/clj_pebble/standard_extensions.clj new file mode 100644 index 0000000..bc19aca --- /dev/null +++ b/src/clj_pebble/standard_extensions.clj @@ -0,0 +1,13 @@ +(ns clj-pebble.standard-extensions) + +(def extensions + {:functions + {"concat" + (fn [& values] + (apply str values))} + + :filters + {} + + :tests + {}}) \ No newline at end of file