@digipair/skill-worker 0.87.6 → 0.87.7
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.cjs.js +2 -1
- package/index.esm.js +2 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -27878,7 +27878,8 @@ const applyTemplate = (value, context)=>{
|
|
|
27878
27878
|
btoa: (value)=>btoa(value),
|
|
27879
27879
|
encodeURIComponent: (value)=>encodeURIComponent(value),
|
|
27880
27880
|
decodeURIComponent: (value)=>decodeURIComponent(value),
|
|
27881
|
-
JSONparse: (value)=>JSON.parse(value)
|
|
27881
|
+
JSONparse: (value)=>JSON.parse(value),
|
|
27882
|
+
JSONstringify: (value)=>JSON.stringify(value)
|
|
27882
27883
|
}));
|
|
27883
27884
|
} else {
|
|
27884
27885
|
const template = handlebars_min.exports.compile(value, {
|
package/index.esm.js
CHANGED
|
@@ -27856,7 +27856,8 @@ const applyTemplate = (value, context)=>{
|
|
|
27856
27856
|
btoa: (value)=>btoa(value),
|
|
27857
27857
|
encodeURIComponent: (value)=>encodeURIComponent(value),
|
|
27858
27858
|
decodeURIComponent: (value)=>decodeURIComponent(value),
|
|
27859
|
-
JSONparse: (value)=>JSON.parse(value)
|
|
27859
|
+
JSONparse: (value)=>JSON.parse(value),
|
|
27860
|
+
JSONstringify: (value)=>JSON.stringify(value)
|
|
27860
27861
|
}));
|
|
27861
27862
|
} else {
|
|
27862
27863
|
const template = handlebars_min.exports.compile(value, {
|