s2cfgtojson 3.2.11 → 3.2.12
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/Struct.mts +1 -1
- package/package.json +1 -1
package/Struct.mts
CHANGED
|
@@ -336,7 +336,7 @@ export function parseKey(key: string, parent: Struct, index: number) {
|
|
|
336
336
|
normKey = extractKeyFromBrackets(key);
|
|
337
337
|
|
|
338
338
|
if (normKey === "*") {
|
|
339
|
-
parent.__internal__.useAsterisk = true;
|
|
339
|
+
// parent.__internal__.useAsterisk = true; never use asterisk for space-saving reasons
|
|
340
340
|
return Object.keys(parent).length - 1;
|
|
341
341
|
}
|
|
342
342
|
|