diff options
Diffstat (limited to 'src/client/Utils/Search.elm')
-rw-r--r-- | src/client/Utils/Search.elm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/Utils/Search.elm b/src/client/Utils/Search.elm new file mode 100644 index 0000000..1b70387 --- /dev/null +++ b/src/client/Utils/Search.elm @@ -0,0 +1,10 @@ +module Utils.Search exposing + ( format + ) + +import String + +import Utils.String as String + +format : String -> String +format = String.unaccent << String.toLower |