@bbn/bbn 2.0.119 → 2.0.120
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.map +1 -1
- package/dist/dt/functions/parse.js +3 -0
- package/package.json +1 -1
|
@@ -483,6 +483,9 @@ export default function parse(input, format, cls = 'auto', force, locale) {
|
|
|
483
483
|
let pattern = '';
|
|
484
484
|
const applyFns = [];
|
|
485
485
|
let i = 0;
|
|
486
|
+
if (fmt === "YYYY-MM-DD HH:mm:ss") {
|
|
487
|
+
debugger;
|
|
488
|
+
}
|
|
486
489
|
while (i < fmt.length) {
|
|
487
490
|
// 1) Handle [literal] blocks first
|
|
488
491
|
if (fmt[i] === '[') {
|