fez-lisp 1.5.166 → 1.5.167
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/package.json +1 -1
- package/src/types.js +3 -3
package/package.json
CHANGED
package/src/types.js
CHANGED
@@ -56,7 +56,7 @@ export const toTypeNames = (type) => {
|
|
56
56
|
return 'Unknown'
|
57
57
|
case COLLECTION:
|
58
58
|
// return 'Array'
|
59
|
-
return '
|
59
|
+
return 'Unknowns'
|
60
60
|
case ANY:
|
61
61
|
return 'Any'
|
62
62
|
default:
|
@@ -1290,7 +1290,7 @@ export const SPECIAL_FORM_TYPES = {
|
|
1290
1290
|
export const formatSubType = (T) => {
|
1291
1291
|
switch (T[0]) {
|
1292
1292
|
case COLLECTION:
|
1293
|
-
return
|
1293
|
+
return `${
|
1294
1294
|
T[1] instanceof Set
|
1295
1295
|
? [...T[1]]
|
1296
1296
|
.map((x) =>
|
@@ -1300,7 +1300,7 @@ export const formatSubType = (T) => {
|
|
1300
1300
|
)
|
1301
1301
|
.join(' ') || toTypeNames(UNKNOWN)
|
1302
1302
|
: toTypeNames(UNKNOWN)
|
1303
|
-
}
|
1303
|
+
}s`
|
1304
1304
|
case ATOM:
|
1305
1305
|
return `${
|
1306
1306
|
T[1] instanceof Set
|