@bbn/bbn 2.0.96 → 2.0.98
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 +1 -1
- package/dist/bbn.js.map +1 -1
- package/dist/dt/functions/guessFormat.js +3 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { Temporal } from 'temporal-polyfill';
|
|
2
|
-
import { bbnDtDate, bbnDtDateTime, bbnDtTime, bbnDtYearMonth, bbnDtMonthDay, bbnDtZoned, bbnDtDuration } from './dt/index.js';
|
|
3
2
|
declare const bbn: Bbn;
|
|
4
|
-
export { bbn as default, bbn, Temporal
|
|
3
|
+
export { bbn as default, bbn, Temporal };
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,6 @@ import com from './com.js';
|
|
|
8
8
|
import db from './db.js';
|
|
9
9
|
import fn from './fn.js';
|
|
10
10
|
import dt from './dt.js';
|
|
11
|
-
import { bbnDtDate, bbnDtDateTime, bbnDtTime, bbnDtYearMonth, bbnDtMonthDay, bbnDtZoned, bbnDtDuration } from './dt/index.js';
|
|
12
11
|
const bbn = {
|
|
13
12
|
version: "1.0.1",
|
|
14
13
|
opt: {
|
|
@@ -99,4 +98,4 @@ if ('undefined' !== typeof window) {
|
|
|
99
98
|
window.Temporal = Temporal;
|
|
100
99
|
}
|
|
101
100
|
}
|
|
102
|
-
export { bbn as default, bbn, Temporal
|
|
101
|
+
export { bbn as default, bbn, Temporal };
|