@digipair/skill-dsp 0.41.2 → 0.41.4
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/index.esm.js +5 -4
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -27351,11 +27351,12 @@ const applyTemplate = (value, context)=>{
|
|
|
27351
27351
|
if (typeof value === 'string') {
|
|
27352
27352
|
if (result.startsWith('NOEVAL:')) {
|
|
27353
27353
|
result = value.substring(7);
|
|
27354
|
+
} else {
|
|
27355
|
+
const template = handlebars_min.exports.compile(value, {
|
|
27356
|
+
noEscape: true
|
|
27357
|
+
});
|
|
27358
|
+
result = template(context);
|
|
27354
27359
|
}
|
|
27355
|
-
const template = handlebars_min.exports.compile(value, {
|
|
27356
|
-
noEscape: true
|
|
27357
|
-
});
|
|
27358
|
-
result = template(context);
|
|
27359
27360
|
if (result.startsWith('EVALUATE:')) {
|
|
27360
27361
|
const path = result.replace(/^EVALUATE:/, '');
|
|
27361
27362
|
result = evaluate(path, _extends({}, context, {
|