pareto-core-dev 0.11.3 → 0.11.4

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/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "./public/implement_me";
2
2
  export * from "./public/log_debug_message";
3
+ export * from "./public/log_wrapping_debug_messages";
package/dist/index.js CHANGED
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./public/implement_me"), exports);
18
18
  __exportStar(require("./public/log_debug_message"), exports);
19
+ __exportStar(require("./public/log_wrapping_debug_messages"), exports);
@@ -4,4 +4,4 @@
4
4
  * before publishing, the usages should be removed
5
5
  * @param message the string to be printed to stdout
6
6
  */
7
- export declare function log_wrapping_debug_messages<T>(message: string, handler: () => T, after: string): T;
7
+ export declare function log_wrapping_debug_messages<T>(message: string, handler: () => T): T;
@@ -7,7 +7,7 @@ exports.log_wrapping_debug_messages = log_wrapping_debug_messages;
7
7
  * before publishing, the usages should be removed
8
8
  * @param message the string to be printed to stdout
9
9
  */
10
- function log_wrapping_debug_messages(message, handler, after) {
10
+ function log_wrapping_debug_messages(message, handler) {
11
11
  console.log("DEBUG BEFORE", message);
12
12
  const startTime = Date.now();
13
13
  const x = handler();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core-dev",
3
- "version": "0.11.3",
3
+ "version": "0.11.4",
4
4
  "license": "ISC",
5
5
  "description": "a pareto package that contains functions that are useful during development",
6
6
  "author": "Corno",