only_ever_generator 0.2.8 → 0.3.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.
@@ -193,11 +193,5 @@ Format your output in JSON as follows:
193
193
  }
194
194
 
195
195
  export function returnTypologyPrompt(typologyPrompt: any){
196
- let concatenatedString: string = '';
197
- for (let key in typologyPrompt) {
198
- if (typologyPrompt.hasOwnProperty(key)) {
199
- concatenatedString += typologyPrompt[key];
200
- }
201
- }
202
- return concatenatedString;
196
+ return typologyPrompt;
203
197
  }