add beginnings of a common place for all standard extensions

This commit is contained in:
Gered 2014-10-07 18:34:58 -04:00
parent 543e1e27c6
commit b4533dad0d

View file

@ -0,0 +1,13 @@
(ns clj-pebble.standard-extensions)
(def extensions
{:functions
{"concat"
(fn [& values]
(apply str values))}
:filters
{}
:tests
{}})