@bbn/bbn 1.0.488 → 1.0.489

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/date.d.ts CHANGED
@@ -26,6 +26,7 @@ declare class bbnDateTool {
26
26
  get M(): string;
27
27
  get EE(): string;
28
28
  get DD(): string;
29
+ get d(): string;
29
30
  get D(): string;
30
31
  get HH(): string;
31
32
  get H(): string;
package/dist/date.js CHANGED
@@ -481,6 +481,9 @@ class bbnDateTool {
481
481
  const d = parseInt(this.day().toString());
482
482
  return d < 10 ? '0' + d.toString() : d.toString();
483
483
  }
484
+ get d() {
485
+ return this.day().toString();
486
+ }
484
487
  get D() {
485
488
  return this.day().toString();
486
489
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.488",
3
+ "version": "1.0.489",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",