@jam-comments/server-utilities 5.13.0 → 5.13.1

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/cjs/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Store = exports.logError = exports.log = exports.removeFalseyValues = exports.fetchAll = exports.markupFetcher = exports.simpleMarkupFetcher = void 0;
3
+ exports.Store = exports.logError = exports.log = exports.copyToUnderscored = exports.removeFalseyValues = exports.fetchAll = exports.markupFetcher = exports.simpleMarkupFetcher = void 0;
4
4
  var simpleMarkupFetcher_1 = require("./simpleMarkupFetcher");
5
5
  Object.defineProperty(exports, "simpleMarkupFetcher", { enumerable: true, get: function () { return simpleMarkupFetcher_1.simpleMarkupFetcher; } });
6
6
  var markupFetcher_1 = require("./markupFetcher");
@@ -8,6 +8,7 @@ Object.defineProperty(exports, "markupFetcher", { enumerable: true, get: functio
8
8
  Object.defineProperty(exports, "fetchAll", { enumerable: true, get: function () { return markupFetcher_1.fetchAll; } });
9
9
  var utils_1 = require("./utils");
10
10
  Object.defineProperty(exports, "removeFalseyValues", { enumerable: true, get: function () { return utils_1.removeFalseyValues; } });
11
+ Object.defineProperty(exports, "copyToUnderscored", { enumerable: true, get: function () { return utils_1.copyToUnderscored; } });
11
12
  var log_1 = require("./log");
12
13
  Object.defineProperty(exports, "log", { enumerable: true, get: function () { return log_1.log; } });
13
14
  Object.defineProperty(exports, "logError", { enumerable: true, get: function () { return log_1.logError; } });
package/dist/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export { simpleMarkupFetcher } from "./simpleMarkupFetcher";
2
2
  export { markupFetcher, fetchAll } from "./markupFetcher";
3
- export { removeFalseyValues } from "./utils";
3
+ export { removeFalseyValues, copyToUnderscored } from "./utils";
4
4
  export { log, logError } from "./log";
5
5
  export { Store } from "./store";
@@ -1,6 +1,6 @@
1
1
  export type { CustomCopy } from "./types";
2
2
  export { simpleMarkupFetcher } from "./simpleMarkupFetcher";
3
3
  export { markupFetcher, fetchAll } from "./markupFetcher";
4
- export { removeFalseyValues } from "./utils";
4
+ export { removeFalseyValues, copyToUnderscored } from "./utils";
5
5
  export { log, logError } from "./log";
6
6
  export { Store } from "./store";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jam-comments/server-utilities",
3
- "version": "5.13.0",
3
+ "version": "5.13.1",
4
4
  "description": "Various JavaScript utilities for JamComments.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",