dateSplits.esm.js 500 B

123456789101112131415161718192021222324
  1. var dateSplits = {
  2. 4: [
  3. // for length-4 strings, eg 1191 or 9111, two ways to split:
  4. [1, 2], [2, 3] // 91 1 1
  5. ],
  6. 5: [[1, 3], [2, 3],
  7. // [2, 3], // 91 1 11 <- duplicate previous one
  8. [2, 4] // 91 11 1 <- New and must be added as bug fix
  9. ],
  10. 6: [[1, 2], [2, 4], [4, 5] // 1991 1 1
  11. ],
  12. // 1111991
  13. 7: [[1, 3], [2, 3], [4, 5], [4, 6] // 1991 11 1
  14. ],
  15. 8: [[2, 4], [4, 6] // 1991 11 11
  16. ]
  17. };
  18. export { dateSplits as default };
  19. //# sourceMappingURL=dateSplits.esm.js.map