@digipair/skill-mongodb 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.esm.js +2 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -27904,7 +27904,8 @@ const applyTemplate = (value, context)=>{
|
|
|
27904
27904
|
btoa: (value)=>btoa(value),
|
|
27905
27905
|
encodeURIComponent: (value)=>encodeURIComponent(value),
|
|
27906
27906
|
decodeURIComponent: (value)=>decodeURIComponent(value),
|
|
27907
|
-
JSONparse: (value)=>JSON.parse(value)
|
|
27907
|
+
JSONparse: (value)=>JSON.parse(value),
|
|
27908
|
+
JSONstringify: (value)=>JSON.stringify(value)
|
|
27908
27909
|
}));
|
|
27909
27910
|
} else {
|
|
27910
27911
|
const template = handlebars_min.exports.compile(value, {
|