@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.js
CHANGED
|
@@ -1824,8 +1824,8 @@ var flowKeys = {
|
|
|
1824
1824
|
};
|
|
1825
1825
|
|
|
1826
1826
|
// src/expressions/expr.ts
|
|
1827
|
-
var WHOLE = /^\{\{
|
|
1828
|
-
var EACH = /\{\{
|
|
1827
|
+
var WHOLE = /^\{\{([\s\S]*?)\}\}$/;
|
|
1828
|
+
var EACH = /\{\{([\s\S]*?)\}\}/g;
|
|
1829
1829
|
var FALSY_STRINGS = /* @__PURE__ */ new Set(["", "0", "false", "no", "off", "null"]);
|
|
1830
1830
|
function resolvePath(path, context) {
|
|
1831
1831
|
const trimmed = path.trim();
|