@bbn/bbn 1.0.235 → 1.0.237
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/dist/bbn.js +2 -0
- package/dist/bbn.js.map +1 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
import calendar from 'dayjs/plugin/calendar.js';
|
|
4
|
+
import customParseFormat from 'dayjs/plugin/customParseFormat.js';
|
|
4
5
|
import dayOfYear from 'dayjs/plugin/dayOfYear.js';
|
|
5
6
|
import duration from 'dayjs/plugin/duration.js';
|
|
6
7
|
import isBetween from 'dayjs/plugin/isBetween.js';
|
|
@@ -17,6 +18,7 @@ import utc from 'dayjs/plugin/utc.js';
|
|
|
17
18
|
import weekday from 'dayjs/plugin/weekday.js';
|
|
18
19
|
import weekOfYear from 'dayjs/plugin/weekOfYear.js';
|
|
19
20
|
dayjs.extend(calendar);
|
|
21
|
+
dayjs.extend(customParseFormat);
|
|
20
22
|
dayjs.extend(dayOfYear);
|
|
21
23
|
dayjs.extend(duration);
|
|
22
24
|
dayjs.extend(isBetween);
|