Last active
March 25, 2019 05:18
-
-
Save cjbarre/96ffa03066e3afe6c7355d96f3827df9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns pipeline.articles.one | |
| (:require [clojure.spec.alpha :as s] | |
| [clojure.core.async :as a] | |
| [clojure.string :as st])) | |
| (defn capitalize-subscriber-name | |
| [{subscriber :data :as message}] | |
| (update subscriber | |
| :name | |
| st/upper-case)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment