cljs.reader/skip-line

functionremoved v1.9.854added v0.0-927Edit
(skip-line reader _)

Source docstring:
Advances the reader to the end of a line. Returns the reader
Source code @ clojurescript:src/main/cljs/cljs/reader.cljs
(defn skip-line
  [reader _]
  (loop []
    (let [ch (read-char reader)]
      (if (or (identical? ch \newline) (identical? ch \return) (nil? ch))
        reader
        (recur)))))