Correctly refer to regex type in CLJS.

Before it thought the type was com.rpl.specter/RegExp - but it's
actually js/RegExp.
This commit is contained in:
Michael Fogleman 2017-10-19 11:17:28 -04:00
parent 14dad51fd4
commit 0e88c57a87

View file

@ -1170,7 +1170,7 @@
ImplicitNav ImplicitNav
(implicit-nav [this] (pred this))) (implicit-nav [this] (pred this)))
(extend-type #?(:clj java.util.regex.Pattern :cljs RegExp) (extend-type #?(:clj java.util.regex.Pattern :cljs js/RegExp)
ImplicitNav ImplicitNav
(implicit-nav [this] (n/regex* this))) (implicit-nav [this] (n/regex* this)))