theprogrammablemind_4wp 8.5.0-beta.0 → 8.6.0-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/helpers.js +2 -1
package/package.json
CHANGED
package/src/helpers.js
CHANGED
@@ -314,7 +314,8 @@ const functionsToStrings = (config) => {
|
|
314
314
|
config = { ...config }
|
315
315
|
defToStrings = (def) => {
|
316
316
|
if (def.apply) {
|
317
|
-
return { ...def, match: def.match.toString(), apply: def.apply.toString() }
|
317
|
+
// return { ...def, match: def.match.toString(), apply: def.apply.toString() }
|
318
|
+
return { match: def.match.toString(), apply: def.apply.toString() }
|
318
319
|
} else {
|
319
320
|
return [def[0].toString(), def[1].toString()]
|
320
321
|
}
|