Skip to content

Commit 71a0002

Browse files
committed
* fix regex
1 parent 865f499 commit 71a0002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10535,7 +10535,7 @@ reduces them without incurring seq initialization"
1053510535
(reify
1053610536
IMapEntry
1053710537
(-key [_]
10538-
(cond-> k (some? (.match k #"[A-Za-z_\*\+\?!\-'][\w\*\+\?!\-']*")) keyword))
10538+
(cond-> k (some? (.match k #"^[A-Za-z_\*\+\?!\-'][\w\*\+\?!\-']*$")) keyword))
1053910539
(-val [_]
1054010540
(unchecked-get obj k)))))
1054110541
pr-writer writer opts))

0 commit comments

Comments
 (0)