fable 3.0.60 → 3.0.61

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fable",
3
- "version": "3.0.60",
3
+ "version": "3.0.61",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -153,8 +153,8 @@ class FableServiceRestClient extends libFableServiceBase
153
153
  {
154
154
  let tmpCompletionTime = this.fable.log.getTimeStamp();
155
155
  this.fable.log.debug(`==> JSON ${tmpOptions.method} completed - received in ${this.dataFormat.formatTimeDelta(tmpOptions.RequestStartTime, tmpCompletionTime)}ms`);
156
- return fCallback(pError, pResponse, JSON.parse(tmpJSONData));
157
156
  }
157
+ return fCallback(pError, pResponse, JSON.parse(tmpJSONData));
158
158
  });
159
159
  });
160
160
  }