@squiz/db-lib 1.56.1-alpha.3 → 1.56.1-alpha.30

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/build.js CHANGED
@@ -28,6 +28,4 @@ if (process.env.NODE_ENV == 'development' && process.env.WATCH == 'true') {
28
28
  };
29
29
  }
30
30
 
31
- // rm.sync('./lib/**');
32
-
33
31
  Promise.all([esBuild.build(buildSettingsMain)]).catch(() => process.exit(1));
package/lib/index.js CHANGED
@@ -49567,7 +49567,7 @@ var require_parseCacheControl = __commonJS({
49567
49567
  const trimmedValue = value !== void 0 ? value.trim() : void 0;
49568
49568
  const strippedValue = trimQuotes(trimmedValue);
49569
49569
  const parsedValue = parseIntOrString(strippedValue, trimmedKey);
49570
- result[trimmedKey] = parsedValue;
49570
+ result[`${trimmedKey}`] = parsedValue;
49571
49571
  }
49572
49572
  return result;
49573
49573
  }