type-store 0.3.0 → 0.4.0

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/type-store.js +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "type-store",
3
3
  "description": "type ecosystem",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "repository": "codenautas/type-store",
7
7
  "license": "MIT",
@@ -12,17 +12,17 @@
12
12
  ],
13
13
  "dependencies": {
14
14
  "big.js": "^6.2.1",
15
- "best-globals": "^1.0.4",
15
+ "best-globals": "^1.1.2",
16
16
  "js-to-html": "^1.3.2",
17
- "json4all": "^1.1.0",
18
- "like-ar": "^0.3.6"
17
+ "json4all": "^1.2.1",
18
+ "like-ar": "^0.3.9"
19
19
  },
20
20
  "devDependencies": {
21
21
  "expect.js": "^0.3.1",
22
22
  "istanbul": "^0.4.5",
23
23
  "mocha": "^10.2.0",
24
24
  "postgres-interval": "^4.0.0",
25
- "discrepances": "^0.2.6"
25
+ "discrepances": "^0.2.8"
26
26
  },
27
27
  "engines": {
28
28
  "node": ">= 14"
package/type-store.js CHANGED
@@ -617,7 +617,7 @@ TypeStore.type.date.prototype.toPlainString=function toPlainString(typedValue){
617
617
  return typedValue.toYmd();
618
618
  };
619
619
  TypeStore.type.date.prototype.toExcelValue=function toExcelValue(typedValue){
620
- return typedValue.toYmd();
620
+ return typedValue;
621
621
  };
622
622
  TypeStore.type.date.prototype.toExcelType=function toExcelType(typedValue){
623
623
  return 'd';