Skip to content

Instantly share code, notes, and snippets.

@cjbarre
Last active March 25, 2019 05:18
Show Gist options
  • Select an option

  • Save cjbarre/96ffa03066e3afe6c7355d96f3827df9 to your computer and use it in GitHub Desktop.

Select an option

Save cjbarre/96ffa03066e3afe6c7355d96f3827df9 to your computer and use it in GitHub Desktop.
(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