@crowdin/app-project-module 0.28.9 → 0.28.10
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/out/index.js +1 -1
- package/package.json +1 -1
package/out/index.js
CHANGED
|
@@ -108,7 +108,7 @@ function addCrowdinEndpoints(app, clientConfig) {
|
|
|
108
108
|
return options.inverse(this);
|
|
109
109
|
},
|
|
110
110
|
in: function (a, b, options) {
|
|
111
|
-
if (a.includes(b)) {
|
|
111
|
+
if (a.toString().includes(b.toString())) {
|
|
112
112
|
return options.fn(this);
|
|
113
113
|
}
|
|
114
114
|
return options.inverse(this);
|
package/package.json
CHANGED