@bbn/bbn 1.0.108 → 1.0.109
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/bundle.js +3 -0
- package/dist/fn/datetime/calendar.js +3 -0
- package/package.json +1 -1
package/dist/bundle.js
CHANGED
|
@@ -3695,6 +3695,9 @@
|
|
|
3695
3695
|
"use strict";
|
|
3696
3696
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3697
3697
|
exports.calendar = void 0;
|
|
3698
|
+
const bbn = {
|
|
3699
|
+
_: st => st
|
|
3700
|
+
};
|
|
3698
3701
|
//dayjs.extend(window['dayjs_plugin_calendar']);
|
|
3699
3702
|
/**
|
|
3700
3703
|
* Returns a date relative to the current day.
|
|
@@ -3,6 +3,9 @@ import { fdate } from "./fdate.js";
|
|
|
3
3
|
import { date } from "./date.js";
|
|
4
4
|
import { isDate } from "../type/isDate.js";
|
|
5
5
|
import { isString } from "../type/isString.js";
|
|
6
|
+
const bbn = {
|
|
7
|
+
_: st => st
|
|
8
|
+
};
|
|
6
9
|
//dayjs.extend(window['dayjs_plugin_calendar']);
|
|
7
10
|
/**
|
|
8
11
|
* Returns a date relative to the current day.
|