@bbn/bbn 1.0.440 → 1.0.441

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.js CHANGED
@@ -264,7 +264,7 @@ class bbnDateTool {
264
264
  each(parts, (part) => {
265
265
  if (part in unitsCorrespondence) {
266
266
  const suffix = unitsMap[unitsCorrespondence[part]];
267
- str += date['get' + suffix]();
267
+ str += date[suffix];
268
268
  }
269
269
  else {
270
270
  str += part;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.440",
3
+ "version": "1.0.441",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",