@bbn/bbn 2.0.137 → 2.0.138

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.
@@ -1067,18 +1067,18 @@ export class bbnDt {
1067
1067
  daysInMonth() {
1068
1068
  if (this.isValid) {
1069
1069
  switch (this.month()) {
1070
- case 1:
1070
+ case 2:
1071
1071
  if (this.year() % 4 === 0) {
1072
1072
  return 29;
1073
1073
  }
1074
1074
  else {
1075
1075
  return 28;
1076
1076
  }
1077
- case 0:
1078
- case 3:
1079
- case 5:
1080
- case 8:
1081
- case 10:
1077
+ case 1:
1078
+ case 4:
1079
+ case 6:
1080
+ case 9:
1081
+ case 11:
1082
1082
  return 30;
1083
1083
  default:
1084
1084
  return 31;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "2.0.137",
3
+ "version": "2.0.138",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",