fable 3.0.41 → 3.0.43

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.41",
3
+ "version": "3.0.43",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -75,7 +75,7 @@
75
75
  "fable-settings": "^3.0.5",
76
76
  "fable-uuid": "^3.0.5",
77
77
  "manyfest": "^1.0.24",
78
- "precedent": "^1.0.10",
78
+ "precedent": "^1.0.12",
79
79
  "simple-get": "^4.0.1"
80
80
  }
81
81
  }
@@ -130,7 +130,7 @@ class FableServiceRestClient extends libFableServiceBase
130
130
 
131
131
  getJSON(pOptionsOrURL, fCallback)
132
132
  {
133
- let tmpRequestOptions = (typeof(pOptions) == 'object') ? pOptions : {};
133
+ let tmpRequestOptions = (typeof(pOptionsOrURL) == 'object') ? pOptionsOrURL : {};
134
134
  if (typeof(pOptionsOrURL) == 'string')
135
135
  {
136
136
  tmpRequestOptions.url = pOptionsOrURL;
@@ -188,7 +188,7 @@ class FableServiceRestClient extends libFableServiceBase
188
188
 
189
189
  return this.executeJSONRequest(pOptions, fCallback);
190
190
  }
191
-
191
+
192
192
  delJSON(pOptions, fCallback)
193
193
  {
194
194
  pOptions.method = 'DELETE';
@@ -198,7 +198,7 @@ class FableServiceRestClient extends libFableServiceBase
198
198
 
199
199
  getRawText(pOptionsOrURL, fCallback)
200
200
  {
201
- let tmpRequestOptions = (typeof(pOptions) == 'object') ? pOptions : {};
201
+ let tmpRequestOptions = (typeof(pOptionsOrURL) == 'object') ? pOptionsOrURL : {};
202
202
  if (typeof(pOptionsOrURL) == 'string')
203
203
  {
204
204
  tmpRequestOptions.url = pOptionsOrURL;