@particle-academy/fancy-flow 0.43.0 → 0.43.1
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -15272,8 +15272,8 @@ var flowKeys = {
|
|
|
15272
15272
|
};
|
|
15273
15273
|
|
|
15274
15274
|
// src/expressions/expr.ts
|
|
15275
|
-
var WHOLE = /^\{\{
|
|
15276
|
-
var EACH = /\{\{
|
|
15275
|
+
var WHOLE = /^\{\{([\s\S]*?)\}\}$/;
|
|
15276
|
+
var EACH = /\{\{([\s\S]*?)\}\}/g;
|
|
15277
15277
|
var FALSY_STRINGS = /* @__PURE__ */ new Set(["", "0", "false", "no", "off", "null"]);
|
|
15278
15278
|
function resolvePath(path, context) {
|
|
15279
15279
|
const trimmed = path.trim();
|