esoftplay 0.0.186 → 0.0.187

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.
@@ -306,7 +306,7 @@ export default class m {
306
306
  this.cancelTimeout()
307
307
  let resText = await res.text()
308
308
  this.resStatus = res.status
309
- let resJson = (resText.startsWith("{") || resText.startsWith("[")) ? JSON.parse(resText) : null
309
+ var resJson = (resText.startsWith("{") || resText.startsWith("[")) ? JSON.parse(resText) : null
310
310
  if (resJson) {
311
311
  if (onDone) onDone(resJson, false)
312
312
  this.onDone(resJson)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.186",
3
+ "version": "0.0.187",
4
4
  "description": "embedding data from esoftplay framework (web based) into mobile app",
5
5
  "main": "cache/index.js",
6
6
  "types": "../../index.d.ts",