expf-sigma-node.js 0.1.6 → 0.1.7
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 +1 -1
- package/public/sigma.js +4 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expf-sigma-node.js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "expf-sigma-node.js lets you manage features flags and remote config across web, server side applications. Deliver true Continuous Integration. Get builds out faster. Control who has access to new features.",
|
|
5
5
|
"main": "public/sigma.js",
|
|
6
6
|
"keywords": [
|
package/public/sigma.js
CHANGED
|
@@ -6089,18 +6089,16 @@ var Sigma = class {
|
|
|
6089
6089
|
const geoData = await this.cache.parse("sigmaGeoData");
|
|
6090
6090
|
this.sigmaUserData.setGeo(geoData);
|
|
6091
6091
|
let flag = null;
|
|
6092
|
+
const expName = this.getExperimentByFeatureFlag(cacheKey, flagName);
|
|
6093
|
+
if (expName) {
|
|
6094
|
+
return await this.getExperiment(expName).then((res) => res.getFeatureValue(flagName));
|
|
6095
|
+
}
|
|
6092
6096
|
for (let i = 0; i < cacheKey.feature_flags.length; i++) {
|
|
6093
6097
|
if (cacheKey.feature_flags[i]["name"] === flagName) {
|
|
6094
6098
|
flag = cacheKey.feature_flags[i];
|
|
6095
6099
|
break;
|
|
6096
6100
|
}
|
|
6097
6101
|
}
|
|
6098
|
-
if (!flag) {
|
|
6099
|
-
let expName = this.getExperimentByFeatureFlag(cacheKey, flagName);
|
|
6100
|
-
if (!expName)
|
|
6101
|
-
return flag;
|
|
6102
|
-
return await this.getExperiment(expName).then((res) => res.getFeatureValue(flagName));
|
|
6103
|
-
}
|
|
6104
6102
|
if (!flag)
|
|
6105
6103
|
return null;
|
|
6106
6104
|
return this.findingSpotCondition(flag, this.sigmaUserData);
|