@zodic/shared 0.0.88 → 0.0.89
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.
|
@@ -198,16 +198,14 @@ export class ConceptService {
|
|
|
198
198
|
const [planet1Sign, planet2Sign, planet3Sign] =
|
|
199
199
|
combinationString.split('-');
|
|
200
200
|
|
|
201
|
-
if (!planet1Sign || !planet2Sign ||
|
|
201
|
+
if (!planet1Sign || !planet2Sign || !planet3Sign) {
|
|
202
202
|
throw new Error(
|
|
203
203
|
`❌ Invalid combinationString: ${combinationString} (Expected format: sign1-sign2-[sign3])`
|
|
204
204
|
);
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
console.log(
|
|
208
|
-
`🌌 Extracted planet signs: ${planet1} -> ${planet1Sign}, ${planet2} -> ${planet2Sign}, ${
|
|
209
|
-
planet3 || 'N/A'
|
|
210
|
-
} -> ${planet3Sign || 'N/A'}`
|
|
208
|
+
`🌌 Extracted planet signs: ${planet1} -> ${planet1Sign}, ${planet2} -> ${planet2Sign}, ${planet3} -> ${planet3Sign}`
|
|
211
209
|
);
|
|
212
210
|
|
|
213
211
|
// 🔍 Ensure Concept Combination exists
|
package/package.json
CHANGED