catchup-library-web 1.18.12 → 1.18.14
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/dist/index.js
CHANGED
|
@@ -3412,6 +3412,7 @@ var ShowBodyMediaByContentType = ({
|
|
|
3412
3412
|
const processTextTags = () => {
|
|
3413
3413
|
const checkText = "--TEXT--";
|
|
3414
3414
|
while (copyValue.includes(checkText)) {
|
|
3415
|
+
console.log("copy value: ", copyValue);
|
|
3415
3416
|
const firstIndex = copyValue.indexOf(checkText);
|
|
3416
3417
|
const textBeforeTag = copyValue.substring(0, firstIndex);
|
|
3417
3418
|
console.log("text before: ", textBeforeTag);
|
package/dist/index.mjs
CHANGED
|
@@ -3196,6 +3196,7 @@ var ShowBodyMediaByContentType = ({
|
|
|
3196
3196
|
const processTextTags = () => {
|
|
3197
3197
|
const checkText = "--TEXT--";
|
|
3198
3198
|
while (copyValue.includes(checkText)) {
|
|
3199
|
+
console.log("copy value: ", copyValue);
|
|
3199
3200
|
const firstIndex = copyValue.indexOf(checkText);
|
|
3200
3201
|
const textBeforeTag = copyValue.substring(0, firstIndex);
|
|
3201
3202
|
console.log("text before: ", textBeforeTag);
|
package/package.json
CHANGED
|
@@ -80,6 +80,7 @@ const ShowBodyMediaByContentType = ({
|
|
|
80
80
|
const processTextTags = () => {
|
|
81
81
|
const checkText = "--TEXT--";
|
|
82
82
|
while (copyValue.includes(checkText)) {
|
|
83
|
+
console.log("copy value: ", copyValue);
|
|
83
84
|
const firstIndex = copyValue.indexOf(checkText);
|
|
84
85
|
const textBeforeTag = copyValue.substring(0, firstIndex);
|
|
85
86
|
console.log("text before: ", textBeforeTag);
|