@feardread/feature-factory 2.0.4 → 2.0.5
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/dist/bundle.min.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/factory.js +2 -2
package/package.json
CHANGED
package/src/api/factory.js
CHANGED
|
@@ -5,7 +5,7 @@ import cache from "../cache/cache.js";
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
function InstanceFactory ( options ) {
|
|
9
9
|
console.log('Instance Opts = ', options)
|
|
10
10
|
const API_BASE_URL = (options.API_BASE_URL)
|
|
11
11
|
? options.API_BASE_URL
|
|
@@ -71,7 +71,7 @@ const InstanceFactory = (( options ) => {
|
|
|
71
71
|
);
|
|
72
72
|
|
|
73
73
|
return instance;
|
|
74
|
-
}
|
|
74
|
+
};
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
|