-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced cljx with cljc. cljs tests are passing but lein test runs no…
… tests.
- Loading branch information
Showing
16 changed files
with
225 additions
and
299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
19 changes: 7 additions & 12 deletions
19
src/cljx/jamesmacaulay/async_tools/core.cljx → src/jamesmacaulay/async_tools/core.cljc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
src/cljx/jamesmacaulay/async_tools/test.cljx → src/jamesmacaulay/async_tools/test.clj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 16 additions & 18 deletions
34
...jx/jamesmacaulay/zelkova/impl/signal.cljx → src/jamesmacaulay/zelkova/impl/signal.cljc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
...cljx/jamesmacaulay/zelkova/impl/time.cljx → src/jamesmacaulay/zelkova/impl/time.cljc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
(ns jamesmacaulay.zelkova.impl.time | ||
"Implementation details for `jamesmacaulay.zelkova.time`.") | ||
|
||
#+clj | ||
(defn now [] (System/currentTimeMillis)) | ||
#+cljs | ||
(defn now [] (.valueOf (js/Date.))) | ||
(defn now [] | ||
#?(:clj (System/currentTimeMillis) | ||
:cljs (.valueOf (js/Date.)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 2 additions & 13 deletions
15
src/cljx/jamesmacaulay/zelkova/mouse.cljx → src/jamesmacaulay/zelkova/mouse.cljs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 9 additions & 12 deletions
21
src/cljx/jamesmacaulay/zelkova/signal.cljx → src/jamesmacaulay/zelkova/signal.cljc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.