jewish-date 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# Jewish Date · [](https://www.npmjs.com/package/jewish-date) [](https://www.npmjs.com/package/jewish-date) [](https://bundlephobia.com/package/jewish-date) [](https://github.com/Shmulik-Kravitz/jewish-date/blob/master/LICENSE)  
|
|
2
2
|
|
|
3
3
|
## Jewish Date is a Hebrew date to Gregorian date and vice versa converter
|
|
4
4
|
|
|
5
5
|
* 🌐 Works with both Node.js and the browser
|
|
6
|
-
* 📦
|
|
6
|
+
* 📦 2.5kB mini library (minified & gzip)
|
|
7
7
|
* 📜 MIT License
|
|
8
8
|
* 🔧 Easy to use
|
|
9
9
|
|
|
@@ -25,7 +25,7 @@ npm install jewish-date --save
|
|
|
25
25
|
|
|
26
26
|
```js
|
|
27
27
|
import {
|
|
28
|
-
toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate,
|
|
28
|
+
toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, JewishMonth
|
|
29
29
|
} from "jewish-date";
|
|
30
30
|
|
|
31
31
|
const date = new Date("2020-01-01");
|
|
@@ -52,7 +52,7 @@ Replace
|
|
|
52
52
|
|
|
53
53
|
```js
|
|
54
54
|
import {
|
|
55
|
-
toJewishDate,
|
|
55
|
+
toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, JewishMonth
|
|
56
56
|
} from "jewish-date";
|
|
57
57
|
```
|
|
58
58
|
|
|
@@ -60,7 +60,7 @@ With
|
|
|
60
60
|
|
|
61
61
|
```js
|
|
62
62
|
const {
|
|
63
|
-
toJewishDate,
|
|
63
|
+
toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, JewishMonth
|
|
64
64
|
} = require("jewish-date");
|
|
65
65
|
```
|
|
66
66
|
|