theprogrammablemind 7.5.8-beta.84 → 7.5.8-beta.85
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/config.js +1 -1
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -1009,7 +1009,7 @@ class Config {
|
|
1009
1009
|
bridge = {...bridge}
|
1010
1010
|
delete bridge.where
|
1011
1011
|
if (bridge.generatorp) {
|
1012
|
-
bridge.generatorp = bridge.generatorp.toString()
|
1012
|
+
bridge.generatorp = bridge.generatorp.toString().replace(/(\r\n|\n|\r| )/gm, "");
|
1013
1013
|
}
|
1014
1014
|
if (bridge.generatorr) {
|
1015
1015
|
bridge.generatorr = bridge.generatorr.toString()
|