@bbn/bbn 2.0.146 → 2.0.147
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.js +1 -1
- package/package.json +1 -1
package/dist/dt.js
CHANGED
|
@@ -190,7 +190,7 @@ const dt = (value, inputFormat = null, cls = 'auto') => {
|
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
if (typeof value === 'number') {
|
|
193
|
-
return new bbnDtDateTime(value);
|
|
193
|
+
return new bbnDtDateTime(value < 99999999999 ? value * 1000 : value);
|
|
194
194
|
}
|
|
195
195
|
else if (value.__isBbnDt) {
|
|
196
196
|
return value;
|