funcool / funcool/cuerdas

Kebab/Keyword drops question marks (?)

Open
#92 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Clojure
Stars
318
Forks
30
PR merge metrics
No merged PRs in 30d

Description

Ran into this while converting boolean type attributes to Clojure kebab-keywords.

Examples:

```clojure
(require '[cuerdas.core :as str])

(str/kebab "got_milk?")
; => "got-milk"

(str/kebab :got_milk?)
; => "got-milk"

(str/keyword "got_milk?")
; => :got-milk

(str/keyword :got_milk?)
; => :got-milk

;; clojure keyword
(keyword "got_milk?")
; => :got_milk?

```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.