We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02e57c commit db2ed51Copy full SHA for db2ed51
src/twitter/query.clj
@@ -1,11 +1,11 @@
1
(ns twitter.query
2
(:refer-clojure :exclude [or name])
3
- (:require [clojure.contrib.str-utils :as str-utils]))
+ (:require [clojure.string :as string]))
4
5
(defn or
6
"Build up a search string where all terms are OR'd."
7
[& terms]
8
(java.net.URLEncoder/encode
9
- (str-utils/str-join " OR "
10
- (map #(str "\"" % "\"") terms))
+ (string/join " OR "
+ (map #(str "\"" % "\"") terms))
11
"UTF-8"))
0 commit comments