We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17c57eb commit 758da1dCopy full SHA for 758da1d
1 file changed
README.md
@@ -37,21 +37,21 @@ const date = new Date();
37
const phase = getLunarAge(date);
38
```
39
40
-To get the percentage through the lunar cycle (ex: 0.5602368519132597):
+To get the percentage through the lunar cycle (ex: 0.5602368519132597)
41
42
```js
43
const date = new Date();
44
const phase = getLunarAgePercent(date);
45
46
47
-Whether the moon is waxing (ex: false):
+Whether the moon is waxing (ex: false)
48
49
50
51
const phase = isWaxing(date);
52
53
54
-Whether the moon is waning (ex: true):
+Whether the moon is waning (ex: true)
55
56
57
0 commit comments