theprogrammablemind_4wp 7.7.0-beta.12 → 7.7.0-beta.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.js +2 -0
package/package.json CHANGED
@@ -65,6 +65,6 @@
65
65
  "json-stable-stringify": "^1.0.1",
66
66
  "node-fetch": "^2.6.1"
67
67
  },
68
- "version": "7.7.0-beta.12",
68
+ "version": "7.7.0-beta.13",
69
69
  "license": "ISC"
70
70
  }
package/src/config.js CHANGED
@@ -985,6 +985,8 @@ class Config {
985
985
  return query
986
986
  } else if (typeof queryOrConfig == 'function') {
987
987
  return { apply: queryOrConfig.toString() }
988
+ } else if (queryOrConfig.apply) {
989
+ return { apply: queryOrConfig.apply }
988
990
  } else {
989
991
  const config = { ...queryOrConfig }
990
992
  delete config.where