expf-sigma-node.js 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/sigma.js +1 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expf-sigma-node.js",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
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
@@ -110,9 +110,7 @@ var SigmaUserData = class {
110
110
  var import_node_cache = __toESM(require("node-cache"));
111
111
  var sigmaCache = new import_node_cache.default();
112
112
  var SigmaCache = class {
113
- constructor(postfix, geoCacheTTL) {
114
- this.geoCacheTTL = geoCacheTTL || null;
115
- this.sigmaGeoCache = new import_node_cache.default({ stdTTL: this.geoCacheTTL });
113
+ constructor(postfix) {
116
114
  this.postfix = "";
117
115
  if (postfix)
118
116
  this.postfix = "__" + postfix;