expf-sigma-node.js 0.1.6 → 0.1.8
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 +6 -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.8",
|
|
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,18 @@ 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
|
+
const experimentByFlag = await this.getExperiment(expName).then((res) => res.getFeatureValue(flagName));
|
|
6095
|
+
if (experimentByFlag)
|
|
6096
|
+
return experimentByFlag;
|
|
6097
|
+
}
|
|
6092
6098
|
for (let i = 0; i < cacheKey.feature_flags.length; i++) {
|
|
6093
6099
|
if (cacheKey.feature_flags[i]["name"] === flagName) {
|
|
6094
6100
|
flag = cacheKey.feature_flags[i];
|
|
6095
6101
|
break;
|
|
6096
6102
|
}
|
|
6097
6103
|
}
|
|
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
6104
|
if (!flag)
|
|
6105
6105
|
return null;
|
|
6106
6106
|
return this.findingSpotCondition(flag, this.sigmaUserData);
|