@calcit/procs 0.8.58 → 0.8.59

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/lib/js-tuple.mjs CHANGED
@@ -55,7 +55,7 @@ export class CalcitTuple {
55
55
  if (i > 0) {
56
56
  content += " ";
57
57
  }
58
- content += toString(args[i], false, disableJsDataWarning);
58
+ content += toString(args[i], true, disableJsDataWarning);
59
59
  }
60
60
  if (this.klass instanceof CalcitRecord) {
61
61
  return `(%:: ${content} (:class ${this.klass.name.value}))`;
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.8.58",
3
+ "version": "0.8.59",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.11.28",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.8.58",
3
+ "version": "0.8.59",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^20.11.28",
@@ -59,7 +59,7 @@ export class CalcitTuple {
59
59
  if (i > 0) {
60
60
  content += " ";
61
61
  }
62
- content += toString(args[i], false, disableJsDataWarning);
62
+ content += toString(args[i], true, disableJsDataWarning);
63
63
  }
64
64
  if (this.klass instanceof CalcitRecord) {
65
65
  return `(%:: ${content} (:class ${this.klass.name.value}))`;